mirror of https://github.com/hashicorp/packer
parent
1678d66e31
commit
b82ab2cc6a
@ -0,0 +1,22 @@
|
||||
#! /usr/bin/env bash
|
||||
|
||||
set -eu -o pipefail
|
||||
|
||||
gpath=${GOPATH:-}
|
||||
if [ -z "$gpath" ]; then
|
||||
gpath=$HOME/go
|
||||
fi
|
||||
|
||||
reldir=`dirname $0`
|
||||
curdir=`pwd`
|
||||
cd $reldir
|
||||
CUR_GO_DIR=`pwd`
|
||||
cd $curdir
|
||||
|
||||
if [[ $CUR_GO_DIR == *"$gpath"* ]]; then
|
||||
# echo "You're on the gopath"
|
||||
exit 1
|
||||
else
|
||||
# echo "You're not on the gopath"
|
||||
exit 0
|
||||
fi
|
||||
Loading…
Reference in new issue