diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2021-08-30 19:07:26 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2021-08-30 19:07:26 -0400 |
commit | ea5ef2fe245c09b35c783977928d6e995110cfb4 (patch) | |
tree | e25f71adb433bba34b10c3a013d8b10c24f159e3 /gobuild.sh | |
parent | 628dd83397c47ff484f7c81b06dcd6d1e4af628b (diff) |
Scrap old spec, add initial value parsing
Diffstat (limited to 'gobuild.sh')
-rwxr-xr-x[-rw-r--r--] | gobuild.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gobuild.sh b/gobuild.sh index daa0a55..e85b718 100644..100755 --- a/gobuild.sh +++ b/gobuild.sh @@ -2,7 +2,7 @@ SRCDIR=$(pwd) -GOPATH="$GOPATH:$SRCDIR" -GO111MODULE=off +export GOPATH="$GOPATH:$SRCDIR" +export GO111MODULE="off" go build -o build/${1} src/${1}.go |