Skip to content

Commit 1e2f4dc

Browse files
committed
Cleans up trailing spaces
1 parent a9fb5d2 commit 1e2f4dc

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Makefile

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := github-release
2-
VERSION := v1.0.3
2+
VERSION := v1.0.4
33

44
compile:
55
@rm -rf build/
@@ -13,7 +13,7 @@ compile:
1313
install:
1414
go install -ldflags "-X main.Version $(VERSION)"
1515

16-
deps:
16+
deps:
1717
go get github.com/c4milo/github-release
1818
go get github.com/mitchellh/gox
1919

@@ -28,11 +28,11 @@ dist: compile
2828
done
2929

3030
release: dist
31-
latest_tag=$$(git describe --tags `git rev-list --tags --max-count=1`); \
32-
comparison="$$latest_tag..HEAD"; \
33-
if [ -z "$$latest_tag" ]; then comparison=""; fi; \
34-
changelog=$$(git log $$comparison --oneline --no-merges --reverse); \
35-
github-release c4milo/github-release $(VERSION) "$$(git rev-parse --abbrev-ref HEAD)" "**Changelog**<br/>$$changelog" 'dist/*'; \
36-
git pull
31+
@latest_tag=$$(git describe --tags `git rev-list --tags --max-count=1`); \
32+
comparison="$$latest_tag..HEAD"; \
33+
if [ -z "$$latest_tag" ]; then comparison=""; fi; \
34+
changelog=$$(git log $$comparison --oneline --no-merges --reverse); \
35+
github-release c4milo/github-release $(VERSION) "$$(git rev-parse --abbrev-ref HEAD)" "**Changelog**<br/>$$changelog" 'dist/*'; \
36+
git pull
3737

3838
.PHONY: compile install deps dist release

0 commit comments

Comments
 (0)