diff options
-rwxr-xr-x | package.bash | 9 |
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 |