diff options
| author | mo khan <mo.khan@gmail.com> | 2020-04-17 16:51:21 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-04-17 16:51:21 -0600 |
| commit | c31b8082e7074a1a25efc4105b3acda5298f98dd (patch) | |
| tree | 723e2f1ea4987f64381b3c003dc1a9d21c7d3371 /run.sh | |
| parent | adb158d1df5bb691793074b10e9b857d45ff59eb (diff) | |
Use … character
Diffstat (limited to 'run.sh')
| -rwxr-xr-x | run.sh | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -71,18 +71,19 @@ function prepare_tools() { if asdf current 2> >(grep -q 'is not installed'); then echo "No tools to install" else - echo "Installing missing tools" + echo "Installing missing tools…" asdf install 2>&1 fi } function prepare_project() { if [[ -z ${SETUP_CMD:-} ]]; then + echo "Preparing project tools/dependencies…" prepare_tools || true prepare_javascript || true prepare_dotnet || true else - echo "Running '${SETUP_CMD}' to install project dependencies..." + echo "Running '${SETUP_CMD}' to install project dependencies…" # shellcheck disable=SC2068 ${SETUP_CMD[@]} PREPARE="--no-prepare" |
