You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
317 B

12 years ago
#!/usr/bin/env bash
11 years ago
if [ ! -f install.sh ]; then
12 years ago
echo 'build.sh must be run within its container folder' 1>&2
exit 1
fi
CURDIR=`pwd`
NEWPATH="$GOPATH/src/github.com/gpmgo/gopm"
if [ ! -d "$NEWPATH" ]; then
ln -s $CURDIR $NEWPATH
fi
gofmt -w $CURDIR
cd $NEWPATH
11 years ago
go install
12 years ago
cd $CURDIR
echo 'Build successfully!'