install.sh 237 B

1234567891011
  1. #!/bin/bash
  2. set -e
  3. if [[ "$TRAVIS_GO_VERSION" =~ ^1.\12\. ]] && [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
  4. git clone https://github.com/dgsb/gox.git /tmp/gox
  5. pushd /tmp/gox
  6. git checkout new_master
  7. go build ./
  8. popd
  9. fi