We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5aa12bc commit eb70842Copy full SHA for eb70842
build.sh
@@ -84,7 +84,7 @@ function precheck() {
84
ok=1
85
fi
86
87
- if ! go version | egrep -q 'go(1\.1[6789])|go(1\.2[0])' ; then
+ if ! go version | egrep -q 'go(1\.1[6789])|go(1\.2[0-9])' ; then
88
echo "go version must be 1.16 or above"
89
90
script/ensure-go-installed
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
PREFERRED_GO_VERSION=go1.20.3
4
-SUPPORTED_GO_VERSIONS='go1.1[6789]|go1.2[01]'
+SUPPORTED_GO_VERSIONS='go1.1[6789]|go1.2[0-9]'
5
6
export ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
7
cd $ROOTDIR
0 commit comments