Merge pull request #10556 from thaJeztah/fix_runc_version

script/setup/install-runc: fix runc using incorrect version
This commit is contained in:
Maksym Pavlenko 2024-08-06 20:35:45 +00:00 committed by GitHub
commit 10d4ee9dc1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -37,7 +37,7 @@ function install_runc() {
git clone "${RUNC_REPO}" "${TMPROOT}"/runc git clone "${RUNC_REPO}" "${TMPROOT}"/runc
pushd "${TMPROOT}"/runc pushd "${TMPROOT}"/runc
git checkout "${RUNC_VERSION}" git checkout "${RUNC_VERSION}"
make BUILDTAGS='seccomp' runc env -u VERSION make BUILDTAGS='seccomp' runc
$SUDO make install $SUDO make install
popd popd
rm -fR "${TMPROOT}" rm -fR "${TMPROOT}"