diff options
author | Kyle Gunger <corechg@gmail.com> | 2020-06-28 14:30:45 -0400 |
---|---|---|
committer | Kyle Gunger <corechg@gmail.com> | 2020-06-28 14:30:45 -0400 |
commit | 8f9cf0d4856bb53009bb58b53a42e21e2cd1e947 (patch) | |
tree | b022091a0c3105e2da54b9dc16e5f55852b788f3 /gobuild.sh |
[Initial parser] Upload existing
Diffstat (limited to 'gobuild.sh')
-rwxr-xr-x | gobuild.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gobuild.sh b/gobuild.sh new file mode 100755 index 0000000..604554b --- /dev/null +++ b/gobuild.sh @@ -0,0 +1,9 @@ +#!/bin/bash + +SRCDIR=$(pwd) + +GOPATH="$GOPATH:$SRCDIR" + +go env -w GOPATH=$GOPATH + +go build -o build/parse src/main.go |