From 2900e2805c38588cbb293740d58b2fe4c5b84671 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Fri, 24 May 2024 11:40:10 +0200 Subject: [PATCH] run build step with '--nvidia install' only (arg was 'all') --- bot/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/build.sh b/bot/build.sh index dcc61c19d4..ac50f0e655 100755 --- a/bot/build.sh +++ b/bot/build.sh @@ -223,7 +223,7 @@ mkdir -p ${TARBALL_TMP_BUILD_STEP_DIR} BUILD_STEP_ARGS+=("--save" "${TARBALL_TMP_BUILD_STEP_DIR}") BUILD_STEP_ARGS+=("--storage" "${STORAGE}") # add options required to handle NVIDIA support -BUILD_STEP_ARGS+=("--nvidia" "all") +BUILD_STEP_ARGS+=("--nvidia" "install") if [[ ! -z ${SHARED_FS_PATH} ]]; then BUILD_STEP_ARGS+=("--host-injections" "${SHARED_FS_PATH}/host-injections") fi