Skip to content

Commit 400a60f

Browse files
committed
Fixes some minor details
1 parent b561a12 commit 400a60f

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ compile:
1111
-os="linux" \
1212
-os="windows" \
1313
-os="solaris" \
14-
-output "build/{{.Dir}}_$(VERSION)_{{.OS}}_{{.Arch}}/$(NAME)"
14+
-output "build/{{.Dir}}_$(VERSION)_{{.OS}}_{{.Arch}}/$(NAME)" \
15+
./...
1516

1617
install:
1718
go install -ldflags "-X main.Version $(VERSION)"
@@ -35,7 +36,7 @@ release: dist
3536
comparison="$$latest_tag..HEAD"; \
3637
if [ -z "$$latest_tag" ]; then comparison=""; fi; \
3738
changelog=$$(git log $$comparison --oneline --no-merges --reverse); \
38-
github-release c4milo/github-release $(VERSION) "$$(git rev-parse --abbrev-ref HEAD)" "**Changelog**<br/>$$changelog" 'dist/*'; \
39+
github-release c4milo/$(NAME) $(VERSION) "$$(git rev-parse --abbrev-ref HEAD)" "**Changelog**<br/>$$changelog" 'dist/*'; \
3940
git pull
4041

4142
.PHONY: build compile install deps dist release

0 commit comments

Comments
 (0)