diff --git a/gobuild.sh b/gobuild.sh deleted file mode 100755 index d884602..0000000 --- a/gobuild.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -set -eux - -export GOPATH="$(pwd)/.gobuild" -SRCDIR="${GOPATH}/src/github.com/gabrie30/ghorg" - -[ -d ${GOPATH} ] && rm -rf ${GOPATH} -mkdir -p ${GOPATH}/{src,pkg,bin} -mkdir -p ${SRCDIR} -cp ghorg.go ${SRCDIR} -( - echo ${GOPATH} - cd ${SRCDIR} - go get . - go install . -)