Skip to content

Commit 936de2a

Browse files
committed
Adds the version number to the release signature
1 parent b0d1341 commit 936de2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ deb: $(APP_OUT)
2828
@fpm -p dist/ \
2929
-d "lxc (>= 1.0)" \
3030
-s dir -t deb -n $(APP_NAME) -v $(VERSION) -C dist/ usr/bin
31-
@gpg --output dist/$(APP_NAME)-deb.sig \
31+
@gpg --output dist/$(APP_NAME)_$(VERSION)-deb.sig \
3232
--detach-sig dist/$(APP_NAME)_$(VERSION)_amd64.deb
3333

3434
rpm: $(APP_OUT)
3535
@fpm -p dist/ \
3636
-d "lxc" \
3737
-s dir -t rpm -n $(APP_NAME) -v $(VERSION) -C dist/ usr/bin
38-
@gpg --output dist/$(APP_NAME)-rpm.sig \
38+
@gpg --output dist/$(APP_NAME)_$(VERSION)-rpm.sig \
3939
--detach-sig dist/$(APP_NAME)-$(VERSION)-1.x86_64.rpm
4040

4141
install: $(APP_OUT)

0 commit comments

Comments
 (0)