We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57e3d3e commit bdbc487Copy full SHA for bdbc487
Makefile
@@ -26,7 +26,7 @@ all: bin/git-sizer
26
.PHONY: bin/git-sizer
27
bin/git-sizer:
28
mkdir -p bin
29
- $(GO) build $(GOFLAGS) -o $@ $(PACKAGE)
+ $(GO) build $(GOFLAGS) -o $@ .
30
31
# Cross-compile for a bunch of common platforms. Note that this
32
# doesn't work with USE_ISATTY:
@@ -50,7 +50,7 @@ define PLATFORM_template =
50
.PHONY: bin/git-sizer-$(1)-$(2)$(3)
51
bin/git-sizer-$(1)-$(2)$(3):
52
53
- GOOS=$(1) GOARCH=$(2) $$(GO) build $$(GOFLAGS) -ldflags "-X main.ReleaseVersion=$$(VERSION)" -o $$@ $$(PACKAGE)
+ GOOS=$(1) GOARCH=$(2) $$(GO) build $$(GOFLAGS) -ldflags "-X main.ReleaseVersion=$$(VERSION)" -o $$@ .
54
common-platforms: bin/git-sizer-$(1)-$(2)$(3)
55
56
# Note that releases don't include code from vendor (they're only used
0 commit comments