Skip to content

Commit 5a5d3e1

Browse files
committed
Update preferred version checksums
PR github#966 updated the PREFERRED_GO_VERSION from go1.14.7 to go1.16.4 but didn't updated the corresponding binary checksums. The checksums can be found at https://go.dev/dl/
1 parent 8f361f6 commit 5a5d3e1

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

script/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -e
3+
set -ex
44

55
# Make sure we have the version of Go we want to depend on, either from the
66
# system or one we grab ourselves.

script/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -e
3+
set -ex
44

55
. script/bootstrap
66

script/ensure-go-installed

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
#!/bin/bash
22

3+
set -x
4+
35
PREFERRED_GO_VERSION=go1.16.4
46
SUPPORTED_GO_VERSIONS='go1.1[56]'
57

68
GO_PKG_DARWIN=${PREFERRED_GO_VERSION}.darwin-amd64.pkg
7-
GO_PKG_DARWIN_SHA=0f215de06019a054a3da46a0722989986c956d719c7a0a8fc38a5f3c216d6f6b
9+
GO_PKG_DARWIN_SHA=9f9b940d0f4b3ac764f0a33d78384a87b804aab29d1aacbdc9bca3a3480e9272
810

911
GO_PKG_LINUX=${PREFERRED_GO_VERSION}.linux-amd64.tar.gz
10-
GO_PKG_LINUX_SHA=4a7fa60f323ee1416a4b1425aefc37ea359e9d64df19c326a58953a97ad41ea5
12+
GO_PKG_LINUX_SHA=7154e88f5a8047aad4b80ebace58a059e36e7e2e4eb3b383127a28c711b4ff59
1113

1214
export ROOTDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
1315
cd $ROOTDIR

0 commit comments

Comments
 (0)