summaryrefslogtreecommitdiff
path: root/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'run.sh')
-rwxr-xr-xrun.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/run.sh b/run.sh
index e18ae43..af1ed79 100755
--- a/run.sh
+++ b/run.sh
@@ -87,7 +87,8 @@ function prepare_project() {
prepare_dotnet || true
else
echo "Running '${SETUP_CMD}' to install project dependencies..."
- "${SETUP_CMD[@]}"
+ # shellcheck disable=SC2068
+ ${SETUP_CMD[@]}
PREPARE="--no-prepare"
fi
}