fix dist.sh compatibility with GNU coreutils mktemp

Resolves this error:

    mktemp: too few X's in template ‘oauth2_proxy’
This commit is contained in:
Joshua Hoblitt 2016-05-26 09:34:58 -07:00
parent 62c80df1a5
commit 0a7a90b7a8

View File

@ -20,7 +20,7 @@ echo "... running tests"
for os in windows linux darwin; do
echo "... building v$version for $os/$arch"
BUILD=$(mktemp -d -t oauth2_proxy)
BUILD=$(mktemp -d ${TMPDIR:-/tmp}/oauth2_proxy.XXXXXX)
TARGET="oauth2_proxy-$version.$os-$arch.$goversion"
GOOS=$os GOARCH=$arch CGO_ENABLED=0 go build -o $BUILD/$TARGET/oauth2_proxy || exit 1
pushd $BUILD