diff options
Diffstat (limited to 'tools')
-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) } |