1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00
Files
source-to-image/hack/install-tools.sh
2019-10-28 11:01:00 +01:00

14 lines
244 B
Bash
Executable File

#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
STARTTIME=$(date +%s)
echo $(go version)
GO111MODULE=off go get golang.org/x/lint/golint
ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"