We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23b3317 commit 7811dd8Copy full SHA for 7811dd8
Makefile
@@ -1,8 +1,6 @@
1
PREFIX = /usr/local
2
SHAREDIR = $(PREFIX)/share/archlinux
3
BINDIR = $(PREFIX)/bin
4
-REPO = contrib
5
-TAG = $(shell git describe --abbrev=0 --tags)
6
7
BASH_SCRIPTS = \
8
admin/checkservices \
@@ -42,7 +40,7 @@ release:
42
40
git describe --exact-match >/dev/null 2>&1 && { echo "Last commit is already tagged" >&2; exit 1; }
43
41
git tag -s $(shell date +%Y%m%d)
44
git push --tags
45
- gh release create --generate-notes ${TAG}
+ gh release create --generate-notes $(shell date +%Y%m%d)
46
47
check: check-bash check-python
48
0 commit comments