Skip to content

Commit

Permalink
Adds the version number to the release signature
Browse files Browse the repository at this point in the history
  • Loading branch information
ralt committed Feb 1, 2015
1 parent b0d1341 commit 936de2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ deb: $(APP_OUT)
@fpm -p dist/ \
-d "lxc (>= 1.0)" \
-s dir -t deb -n $(APP_NAME) -v $(VERSION) -C dist/ usr/bin
@gpg --output dist/$(APP_NAME)-deb.sig \
@gpg --output dist/$(APP_NAME)_$(VERSION)-deb.sig \
--detach-sig dist/$(APP_NAME)_$(VERSION)_amd64.deb

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

install: $(APP_OUT)
Expand Down

0 comments on commit 936de2a

Please sign in to comment.