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

14 lines
244 B
Bash
Raw Permalink Normal View History

2015-08-25 16:11:55 +02:00
#!/bin/bash
set -o errexit
set -o nounset
set -o pipefail
2015-08-25 16:11:55 +02:00
STARTTIME=$(date +%s)
2015-08-25 16:11:55 +02:00
echo $(go version)
2015-08-25 16:11:55 +02:00
2019-10-28 11:01:00 +01:00
GO111MODULE=off go get golang.org/x/lint/golint
ret=$?; ENDTIME=$(date +%s); echo "$0 took $(($ENDTIME - $STARTTIME)) seconds"; exit "$ret"