diff options
| author | mo khan <mo.khan@gmail.com> | 2020-03-19 08:46:09 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-03-19 08:51:57 -0600 |
| commit | c8d3a897da0e8fba6e9e4a22564f7397892049d4 (patch) | |
| tree | 7b70f36181aaef75c1786710cd12ec17e40ecd30 /run.sh | |
| parent | 08204f2633e2548326f7623ff73dd8db6461c963 (diff) | |
Fix usage of SETUP_CMD
Diffstat (limited to 'run.sh')
| -rwxr-xr-x | run.sh | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 } |
