From ad98e9edeaca6e478863b29c7d60d87b47231c9b Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Thu, 22 Dec 2022 19:28:36 -0800 Subject: [PATCH] Add more output when skipping vscode setup Printing only an error-type message without information about what happens afterward is not the most helpful. This commit adds a message indicating that vscode setup is skipped so that at least that feedback is provided. --- vscode.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vscode.sh b/vscode.sh index 3951a65..da39daf 100755 --- a/vscode.sh +++ b/vscode.sh @@ -29,9 +29,11 @@ esac if [[ ! -d "$VSCODE_CONFIG_PATH" ]]; then echo "Could not locate vscode config path (expected at '$VSCODE_CONFIG_PATH')" + echo "Skipping vscode setup" return elif ! type "${VSCODE_BINARY[0]}" >/dev/null 2>/dev/null; then echo "Could not identify vscode binary (expected '${VSCODE_BINARY[*]}')" + echo "Skipping vscode setup" return fi