blob: a46a0281beb8263aed6bdaca9a58f6a5ea23e045 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
set -eux
source build.bash
ARCH=$(go version | cut -d ' ' -f 4 | tr / -)
TARGZ=gocryptfs_${GITVERSION}_$ARCH.tar.gz
tar czf $TARGZ gocryptfs
ls -lh $TARGZ
|