This was a typo. Note that Makefile is only used for building a development version after cloning from git; the tagged release process uses `.goreleaser.yml` and skips the Makefile.
18 lines
No EOL
676 B
Makefile
18 lines
No EOL
676 B
Makefile
BUILD_FILES = $(shell go list -f '{{range .GoFiles}}{{$$.Dir}}/{{.}}\
|
|
{{end}}' ./...)
|
|
|
|
GH_VERSION = $(shell git describe --tags 2>/dev/null || git rev-parse --short HEAD)
|
|
LDFLAGS := -X github.com/github/gh-cli/command.Version=$(GH_VERSION) $(LDFLAGS)
|
|
LDFLAGS := -X github.com/github/gh-cli/command.BuildDate=$(shell date +%Y-%m-%d) $(LDFLAGS)
|
|
ifdef GH_OAUTH_CLIENT_SECRET
|
|
LDFLAGS := -X github.com/github/gh-cli/context.oauthClientID=$(GH_OAUTH_CLIENT_ID) $(LDFLAGS)
|
|
LDFLAGS := -X github.com/github/gh-cli/context.oauthClientSecret=$(GH_OAUTH_CLIENT_SECRET) $(LDFLAGS)
|
|
endif
|
|
|
|
bin/gh: $(BUILD_FILES)
|
|
@go build -ldflags "$(LDFLAGS)" -o "$@"
|
|
|
|
test:
|
|
go test ./...
|
|
|
|
.PHONY: test |