mirror of
https://github.com/openshift/source-to-image.git
synced 2026-02-05 12:44:54 +01:00
14 lines
244 B
Bash
Executable File
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"
|