diff --git a/scripts/get_buffalo.sh b/scripts/get_buffalo.sh deleted file mode 100755 index 3ac973a2..00000000 --- a/scripts/get_buffalo.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/bash - -set -xeo pipefail - -case "$TRAVIS" in -true) - VERSION=0.12.4 - TAR_GZ="buffalo_${VERSION}_linux_amd64.tar.gz" - URL="https://github.com/gobuffalo/buffalo/releases/download/v${VERSION}/${TAR_GZ}" - TARGET_BIN="$(pwd)/bin/buffalo" - TMPDIR=$(mktemp -d) - - ( - cd $TMPDIR - curl -L -o ${TAR_GZ} ${URL} - tar -xzf ${TAR_GZ} - mkdir -p $(dirname ${TARGET_BIN}) - cp buffalo-no-sqlite ${TARGET_BIN} - chmod +x ${TARGET_BIN} - ) - rm -r $TMPDIR - ;; -*) - go get github.com/gobuffalo/buffalo/buffalo - ;; -esac diff --git a/scripts/get_dev_tools.sh b/scripts/get_dev_tools.sh index 8ecf5ec2..40d312a5 100755 --- a/scripts/get_dev_tools.sh +++ b/scripts/get_dev_tools.sh @@ -5,5 +5,3 @@ set -xeuo pipefail GO111MODULE=off go get golang.org/x/lint/golint - -./scripts/get_buffalo.sh