th5/_dev/go.sh
2017-09-05 20:29:43 +01:00

14 lines
301 B
Bash
Executable File

#!/usr/bin/env bash
set -e
BASEDIR=$(cd "$(dirname "$0")" && pwd)
make --quiet -C "$BASEDIR" go >&2
GOENV="$(go env GOOS)_$(go env GOARCH)"
unset GOROOT
make --quiet -C "$BASEDIR" GOROOT GO="$BASEDIR/go/$GOENV/bin/go" >&2
export GOROOT="$BASEDIR/GOROOT/$GOENV"
exec $BASEDIR/go/$GOENV/bin/go "$@"