summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2019-10-24 01:27:01 +0200
committercyBerta <cyberta@riseup.net>2019-10-24 01:27:01 +0200
commit07e05c96b9f7a0371a8233df693efe7c2c93dc74 (patch)
tree8d7007cc24d8fcda20a0d7039172d6110f18e32b
parent0682b45b8c878c90c284c9d96e7c1e133fa07617 (diff)
add missing export statement in build script
-rwxr-xr-xgo/install_go.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/install_go.sh b/go/install_go.sh
index 1674753e..ee7c5ac3 100755
--- a/go/install_go.sh
+++ b/go/install_go.sh
@@ -25,7 +25,7 @@ tar -C ./golang -xzf $GO_VERSION.tar.gz
export GOPATH=`pwd`
export GO_LANG=`pwd`/golang/go/bin
export GO_COMPILED=`pwd`/bin
-PATH="${GO_LANG}:${GO_COMPILED}:${PATH}"
+export PATH="${GO_LANG}:${GO_COMPILED}:${PATH}"
./golang/go/bin/go get golang.org/x/mobile/cmd/gomobile
./golang/go/bin/go env