6647a09a73
OBS-URL: https://build.opensuse.org/request/show/59945 OBS-URL: https://build.opensuse.org/package/show/devel:languages:go/go?expand=0&rev=35
13 lines
202 B
Bash
13 lines
202 B
Bash
# go toolchain env paths
|
|
gopath=lib
|
|
arch=386
|
|
if [ -x /usr/lib64/go ] ; then
|
|
gopath=lib64
|
|
arch=amd64
|
|
fi
|
|
|
|
export GOOS="linux"
|
|
export GOARCH=$arch
|
|
export GOROOT=/usr/$gopath/go
|
|
export GOBIN=/usr/bin
|