summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-04-17 16:51:21 -0600
committermo khan <mo.khan@gmail.com>2020-04-17 16:51:21 -0600
commitc31b8082e7074a1a25efc4105b3acda5298f98dd (patch)
tree723e2f1ea4987f64381b3c003dc1a9d21c7d3371
parentadb158d1df5bb691793074b10e9b857d45ff59eb (diff)
Use … character
-rwxr-xr-xrun.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/run.sh b/run.sh
index fe83f89..8cb4f7b 100755
--- a/run.sh
+++ b/run.sh
@@ -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"