git-lfs/script/bootstrap

28 lines
795 B
Plaintext
Raw Normal View History

2015-07-30 02:37:31 +00:00
#!/usr/bin/env bash
set -e
2013-10-04 16:32:25 +00:00
if uname -s | grep -q "_NT-"; then
# Tell Cygwin / MSYS to really create symbolic links.
export CYGWIN="$CYGWIN winsymlinks:nativestrict"
export MSYS="$MSYS winsymlinks:nativestrict"
fi
if [ -z "$GOPATH" ]; then
export GOPATH="$(pwd)"
2016-11-15 17:01:18 +00:00
mkdir -p src/github.com/git-lfs
[ -h src/github.com/git-lfs/git-lfs ] ||
ln -s "$GOPATH" src/github.com/git-lfs/git-lfs
fi
if uname -s | grep -q "_NT-"; then
echo "Installing goversioninfo to embed resources into Windows executables..."
go get github.com/josephspurrier/goversioninfo/cmd/goversioninfo
export PATH=$PATH:$GOPATH/bin/windows_386
echo "Creating the resource.syso version information file..."
go generate
fi
2014-04-16 21:11:52 +00:00
script/fmt
rm -rf bin/*
GO15VENDOREXPERIMENT=1 go run script/*.go -cmd build "$@"