diff options
author | Jakob Unterwurzacher | 2017-06-04 19:25:08 +0200 |
---|---|---|
committer | Jakob Unterwurzacher | 2017-06-04 19:25:08 +0200 |
commit | 0ac5e44137e457dad2a7f5408fb475bf69c642fa (patch) | |
tree | 773334e5ccb2a54cc80a7246aeab4f1fbdd15fe3 /build-without-openssl.bash | |
parent | d8d7c5c4faf509f436ccfe403bbda5517b6a97b1 (diff) |
Add "package-static.bash" helper script
Creates a tar.gz with a static build of gocryptfs and the man page.
Diffstat (limited to 'build-without-openssl.bash')
-rwxr-xr-x | build-without-openssl.bash | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build-without-openssl.bash b/build-without-openssl.bash index 7c62511..e965951 100755 --- a/build-without-openssl.bash +++ b/build-without-openssl.bash @@ -1,7 +1,5 @@ -#!/bin/bash - -set -eu +#!/bin/bash -eu cd "$(dirname "$0")" -CGO_ENABLED=0 ./build.bash -tags without_openssl +CGO_ENABLED=0 source ./build.bash -tags without_openssl |