mirror of
https://github.com/talent-plan/tinykv.git
synced 2025-04-06 01:20:51 +08:00
fix an issue in getting GOPATH in generate_go.sh (#262)
This commit is contained in:
parent
7c8bc00a00
commit
b4b7dca34f
@ -19,11 +19,11 @@ cmd_exists () {
|
|||||||
|
|
||||||
PROGRAM=$(basename "$0")
|
PROGRAM=$(basename "$0")
|
||||||
|
|
||||||
if [ -z $GOPATH ]; then
|
if [ -z $(go env GOPATH) ]; then
|
||||||
printf "Error: the environment variable GOPATH is not set, please set it before running %s\n" $PROGRAM > /dev/stderr
|
printf "Error: the environment variable GOPATH is not set, please set it before running %s\n" $PROGRAM > /dev/stderr
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
GOPATH=$(go env GOPATH)
|
||||||
GO_PREFIX_PATH=github.com/pingcap-incubator/tinykv/proto/pkg
|
GO_PREFIX_PATH=github.com/pingcap-incubator/tinykv/proto/pkg
|
||||||
export PATH=$(pwd)/_tools/bin:$GOPATH/bin:$PATH
|
export PATH=$(pwd)/_tools/bin:$GOPATH/bin:$PATH
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user