Skip to content

Commit 03379e8

Browse files
authored
Merge pull request #101 from archlinux/Makefile
Makefile: fix release target
2 parents 10b2169 + 49ed93e commit 03379e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ uninstall:
3737

3838
.PHONY: release
3939
release:
40-
git describe --exact-match >/dev/null 2>&1 && { echo "Last commit is already tagged" >&2; exit 1; }
40+
git describe --exact-match >/dev/null 2>&1 && { echo "Last commit is already tagged" >&2; exit 1; } || true
4141
git tag -s $(shell date +%Y%m%d)
4242
git push --tags
4343
gh release create --generate-notes $(shell date +%Y%m%d)

0 commit comments

Comments
 (0)