git-lfs/script/bootstrap
risk danger olson 5c4891908c update scripts to build with vendor experiment off
This maintains compatibility with go 1.4-1.6
2016-02-23 09:51:12 -07:00

16 lines
414 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# Only set GOPATH on non-Windows platforms as Windows can't do the symlinking
# that we need.
if [ -z "$GOPATH" ] && uname -s | grep -vq "_NT-"; then
export GOPATH="$(pwd)"
mkdir -p src/github.com/github
[ -h src/github.com/github/git-lfs ] ||
ln -s "$GOPATH" src/github.com/github/git-lfs
fi
script/fmt
rm -rf bin/*
GO15VENDOREXPERIMENT=0 go run script/*.go -cmd build "$@"