From 6ecd9955214357f407374aaae562b2ef935884b6 Mon Sep 17 00:00:00 2001 From: SoarinFerret <33401067+SoarinFerret@users.noreply.github.com> Date: Tue, 30 Jul 2019 19:33:07 -0500 Subject: [PATCH] fix arguments --- contents/run-script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contents/run-script b/contents/run-script index bbfeb9d..2b2dc2a 100644 --- a/contents/run-script +++ b/contents/run-script @@ -10,5 +10,5 @@ cat > "$SCRIPT" <<< "$RD_CONFIG_SCRIPT" # Make the script executable chmod +x "$SCRIPT" # Execute the script with arguments -exec "$SCRIPT" "${RD_CONFIG_ARGUMENTS:-}" -# Done \ No newline at end of file +exec "$SCRIPT" ${RD_CONFIG_ARGUMENTS:-} +# Done