From f74e00b6e14c2c0621f1b705f7c1f0264314a0c3 Mon Sep 17 00:00:00 2001 From: Ge Yang Date: Sat, 11 Sep 2021 22:58:28 -0400 Subject: [PATCH] fix Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 33e7748..29a41be 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,9 @@ +VERSION=`< VERSION` + bump: pip show jaynes | grep Version | sed 's/Version:\ //g' > VERSION git add VERSION git ci -m "bump version" release: - git tag v$(`< VERSION`) + git tag v$$VERSION git push origin --tags