rm build script

This commit is contained in:
Jay Gabriels
2018-09-30 13:54:49 -07:00
parent 1812c6321a
commit e0f6be2596

View File

@@ -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 .
)