Skip to content

Commit 2394d64

Browse files
committed
Update package.bash to call build.bash
This makes sure the version number is baked in
1 parent f761a9b commit 2394d64

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

package.bash

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
set -eux
44

5-
tag=$(git describe --tags)
6-
go build
7-
tar czvf gocryptfs_$tag.tar.gz gocryptfs
5+
source build.bash
6+
7+
TARGZ=gocryptfs_$GITVERSION.tar.gz
8+
9+
tar czf $TARGZ gocryptfs
10+
ls -lh $TARGZ

0 commit comments

Comments
 (0)