15 lines
387 B
Bash
Executable File
15 lines
387 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
source build.bash # Builds binary and sets GITVERSION (example: v0.7-15-gf01f599)
|
|
source /etc/os-release # Sets ID (example: fedora) and VERSION_ID (example: 23)
|
|
ARCH=$(go env GOARCH)
|
|
|
|
TARGZ=gocryptfs_${GITVERSION}_${ID}${VERSION_ID}_${ARCH}.tar.gz
|
|
|
|
tar czf $TARGZ gocryptfs
|
|
|
|
echo "Tar created."
|
|
echo "Hint for signing: gpg -u 23A02740 --armor --detach-sig $TARGZ"
|