Commit 40736735 authored by Mitchell Hashimoto's avatar Mitchell Hashimoto

Merge pull request #807 from rickard-von-essen/806_multiple_gopaths

Fixes #806 Build fails if GOPATH has multiple paths
parents 73e57d91 5d75944e
......@@ -56,4 +56,5 @@ export XC_OS=$(go env GOOS)
./scripts/compile.sh
# Move all the compiled things to the PATH
cp pkg/${XC_OS}_${XC_ARCH}/* ${GOPATH}/bin
IFS=: MAIN_GOPATH=( $GOPATH )
cp pkg/${XC_OS}_${XC_ARCH}/* ${MAIN_GOPATH}/bin
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment