We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1748b16 + 437e431 commit 95eac33Copy full SHA for 95eac33
verify-go-version.sh
@@ -31,7 +31,7 @@ version=$("$GO" version) || die "determining version of $GO failed"
31
majorminor=$(echo "$version" | sed -e 's/.*go\([0-9]*\)\.\([0-9]*\).*/\1.\2/')
32
# SC1091: Not following: release-tools/prow.sh was not specified as input (see shellcheck -x).
33
# shellcheck disable=SC1091
34
-expected=$(. release-tools/prow.sh && echo "$$CSI_PROW_GO_VERSION_BUILD")
+expected=$(. release-tools/prow.sh >/dev/null && echo "$CSI_PROW_GO_VERSION_BUILD")
35
36
if [ "$majorminor" != "$expected" ]; then
37
cat >&2 <<EOF
0 commit comments