From 2394d644e8d976c4ccdaf8b1b9fbc27513df04ae Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 1 Nov 2015 15:06:30 +0100 Subject: [PATCH] Update package.bash to call build.bash This makes sure the version number is baked in --- package.bash | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.bash b/package.bash index 61df904..7855ce8 100755 --- a/package.bash +++ b/package.bash @@ -2,6 +2,9 @@ set -eux -tag=$(git describe --tags) -go build -tar czvf gocryptfs_$tag.tar.gz gocryptfs +source build.bash + +TARGZ=gocryptfs_$GITVERSION.tar.gz + +tar czf $TARGZ gocryptfs +ls -lh $TARGZ