mirror of
https://github.com/lightninglabs/lightning-terminal.git
synced 2026-08-13 12:33:36 +02:00
cmd: rename binary to litd
This commit is contained in:
parent
33df4a1698
commit
881ab4093a
5 changed files with 5 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
app/build
|
||||
app/coverage
|
||||
app/node_modules
|
||||
lightning-terminal-debug
|
||||
litd-debug
|
||||
|
|
|
|||
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -5,7 +5,7 @@ https.key
|
|||
# local environment vars to ignore
|
||||
.env*.local
|
||||
|
||||
lightning-terminal-debug
|
||||
litd-debug
|
||||
/lightning-terminal-*
|
||||
|
||||
# go code generated by statik
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -98,11 +98,11 @@ install: statik-build go-install
|
|||
|
||||
go-build:
|
||||
@$(call print, "Building lightning-terminal.")
|
||||
$(GOBUILD) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" -o lightning-terminal-debug $(PKG)/cmd/lightning-terminal
|
||||
$(GOBUILD) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" -o litd-debug $(PKG)/cmd/litd
|
||||
|
||||
go-install:
|
||||
@$(call print, "Installing lightning-terminal.")
|
||||
$(GOINSTALL) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" $(PKG)/cmd/lightning-terminal
|
||||
$(GOINSTALL) -tags="$(LND_RELEASE_TAGS)" -ldflags "$(LDFLAGS)" $(PKG)/cmd/litd
|
||||
|
||||
app-build: yarn-install
|
||||
@$(call print, "Building production app.")
|
||||
|
|
|
|||
|
|
@ -68,7 +68,7 @@ function build_release() {
|
|||
pushd "${dir}"
|
||||
|
||||
green " - Building: ${os} ${arch} ${arm} with build tags '${buildtags}'"
|
||||
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${PKG}/cmd/lightning-terminal
|
||||
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${PKG}/cmd/litd
|
||||
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${LND_PKG}/cmd/lncli
|
||||
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${FARADAY_PKG}/cmd/frcli
|
||||
env CGO_ENABLED=0 GOOS=$os GOARCH=$arch GOARM=$arm go build -v -trimpath -ldflags="${ldflags}" -tags="${buildtags}" ${LOOP_PKG}/cmd/loop
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue