aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakob Unterwurzacher2015-11-01 15:06:30 +0100
committerJakob Unterwurzacher2015-11-01 15:06:30 +0100
commit2394d644e8d976c4ccdaf8b1b9fbc27513df04ae (patch)
tree991efc89e1d297be0d6e66f1aae455b6c0896a8c
parentf761a9b98aa42687a5ce0cfaa1f5b5a026311475 (diff)
Update package.bash to call build.bashv0.3
This makes sure the version number is baked in
-rwxr-xr-xpackage.bash9
1 files 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