Merge commit 'f503dda10d744cc9b8ddcd46dc90a2ab1b57059c' into prow-update-master

This commit is contained in:
Patrick Ohly
2021-03-18 11:05:46 +01:00

View File

@@ -31,7 +31,7 @@ version=$("$GO" version) || die "determining version of $GO failed"
majorminor=$(echo "$version" | sed -e 's/.*go\([0-9]*\)\.\([0-9]*\).*/\1.\2/')
# SC1091: Not following: release-tools/prow.sh was not specified as input (see shellcheck -x).
# shellcheck disable=SC1091
expected=$(. release-tools/prow.sh && echo "$$CSI_PROW_GO_VERSION_BUILD")
expected=$(. release-tools/prow.sh >/dev/null && echo "$CSI_PROW_GO_VERSION_BUILD")
if [ "$majorminor" != "$expected" ]; then
cat >&2 <<EOF