From 0145ccffbcebeba0cb86b950dd8b8361c84bc984 Mon Sep 17 00:00:00 2001 From: Dr John Vidler Date: Tue, 15 Oct 2024 21:31:52 +0100 Subject: [PATCH] Update 00-update Modified modlist arg generation slightly --- launch.d/00-update | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/launch.d/00-update b/launch.d/00-update index e503631..b32e8aa 100644 --- a/launch.d/00-update +++ b/launch.d/00-update @@ -4,9 +4,10 @@ pushd ${STEAM_APP_PATH} MOD_LIST_ARGS="" if [ -f modlist.txt ]; then + MOD_LIST_ARGS="${MOD_LIST_ARGS} +workshop_download_item" while read line; do [[ "$line" =~ ^#.*$ ]] && continue - MOD_LIST_ARGS="${MOD_LIST_ARGS} +workshop_download_item ${STEAM_APP_ID} ${line}" + MOD_LIST_ARGS="${MOD_LIST_ARGS} ${line}" done