Skip to content

Commit 1923f09

Browse files
committed
Fix variable expansion in Makefile tag target
1 parent 966f59d commit 1923f09

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
@@ -24,7 +24,7 @@ clipper: clipper.go
2424
build: clipper
2525

2626
tag: version
27-
git tag -s $$VERSION -m "$$VERSION release"
27+
git tag -s ${VERSION} -m "${VERSION} release"
2828

2929
archive: clipper-${VERSION}.zip
3030

0 commit comments

Comments
 (0)