diff options
author | Kevin Krakauer <krakauer@google.com> | 2021-07-16 12:31:05 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-07-16 12:33:24 -0700 |
commit | 5ad30cac2ede4eda318c78264e3b9810035ef27d (patch) | |
tree | 53882629b6972153a5cb9846094caebd21568750 /tools/installers | |
parent | 628d7d3a4662a14625895df6ff1ca7a9dbf3a5d7 (diff) |
Automated rollback of changelist 385029528
PiperOrigin-RevId: 385200993
Diffstat (limited to 'tools/installers')
-rwxr-xr-x | tools/installers/containerd.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/installers/containerd.sh b/tools/installers/containerd.sh index 03101427c..e598bce89 100755 --- a/tools/installers/containerd.sh +++ b/tools/installers/containerd.sh @@ -36,10 +36,9 @@ install_helper() { mkdir -p "${GOPATH}"/src/$(dirname "${PACKAGE}") && \ git clone https://"${PACKAGE}" "${GOPATH}"/src/"${PACKAGE}" - # Checkout and build the repository. We use a pre-GO111MODULE containerd. + # Checkout and build the repository. (cd "${GOPATH}"/src/"${PACKAGE}" && \ git checkout "${TAG}" && \ - export GO111MODULE=off && \ make && \ make install) } |