Browse Source

Merge pull request #1200 from TechEmpower/fixGin

GOROOT and GOPATH are required
Mike Smith 10 years ago
parent
commit
706ffc8a9b
1 changed files with 7 additions and 0 deletions
  1. 7 0
      frameworks/Go/gin/bash_profile.sh

+ 7 - 0
frameworks/Go/gin/bash_profile.sh

@@ -0,0 +1,7 @@
+# Set the root of our go installation
+export GOROOT=${IROOT}/go
+
+# Where to find the go executable
+export PATH="$GOROOT/bin:$PATH"
+
+export GOPATH=${TROOT}