From 3d4661faf0533311d5668cce0c317694c8c066bc Mon Sep 17 00:00:00 2001 From: Antony Chazapis Date: Thu, 29 Jun 2023 09:20:05 +0300 Subject: [PATCH] Use official runc repository Signed-off-by: Antony Chazapis --- scripts/download | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download b/scripts/download index bff68bf6502f..c5f14932b23f 100755 --- a/scripts/download +++ b/scripts/download @@ -23,7 +23,7 @@ mkdir -p ${DATA_DIR} curl --compressed -sfL https://github.com/k3s-io/k3s-root/releases/download/${VERSION_ROOT}/k3s-root-${ARCH}.tar | tar xf - if [ ${ARCH} = riscv64 ]; then - git clone --single-branch --branch=release-1.1-riscv64 --depth=1 https://github.com/CARV-ICS-FORTH/runc ${RUNC_DIR} + git clone --single-branch --branch=release-1.1 --depth=1 https://github.com/opencontainers/runc ${RUNC_DIR} else git clone --single-branch --branch=${VERSION_RUNC} --depth=1 https://github.com/opencontainers/runc ${RUNC_DIR} fi