Removing support for Go 1.5.3

This commit is contained in:
Diptanu Choudhury
2016-02-22 00:21:04 -08:00
parent 525af88682
commit 0682581ded
3 changed files with 2 additions and 6 deletions

View File

@@ -3,8 +3,6 @@
# This script builds the application from source for multiple platforms.
set -e
export GO15VENDOREXPERIMENT=1
# Get the parent directory of where this script is.
SOURCE="${BASH_SOURCE[0]}"
while [ -h "$SOURCE" ] ; do SOURCE="$(readlink "$SOURCE")"; done

View File

@@ -1,7 +1,5 @@
#!/usr/bin/env bash
export GO15VENDOREXPERIMENT=1
# Create a temp dir and clean it up on exit
TEMPDIR=`mktemp -d -t nomad-test.XXX`
trap "rm -rf $TEMPDIR" EXIT HUP INT QUIT TERM