From 27ca2fafbde0f3e7e79b0c0a8bbf066c98faa213 Mon Sep 17 00:00:00 2001 From: Thomas Roeblitz Date: Sun, 19 May 2024 20:26:09 +0200 Subject: [PATCH] use lower dirs also for build step --- bot/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bot/build.sh b/bot/build.sh index 0d9a314a4c..2a690ecb20 100755 --- a/bot/build.sh +++ b/bot/build.sh @@ -272,6 +272,9 @@ BUILD_STEP_ARGS+=("--nvidia" "all") if [[ ! -z ${SHARED_FS_PATH} ]]; then BUILD_STEP_ARGS+=("--host-injections" "${SHARED_FS_PATH}/host-injections") fi +if [[ ! -z ${LOWER_DIRS} ]]; then + BUILD_STEP_ARGS+=("--lower-dirs" "${LOWER_DIRS}") +fi # create tmp file for output of build step build_outerr=$(mktemp build.outerr.XXXX)