Skip to content

Commit

Permalink
ignore empty IDs
Browse files Browse the repository at this point in the history
Signed-off-by: Rick Venutolo <rvenutolo@users.noreply.github.com>
  • Loading branch information
rvenutolo authored Oct 18, 2024
1 parent d4108d1 commit 403e620
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ IFS='|'
VSCODE_EXTENSION_IDS=$(tr -d "[:space:]" <<< ${VSCODE_EXTENSION_IDS})
VSCODE_EXTENSION_IDS=(${VSCODE_EXTENSION_IDS})
for ID in "${VSCODE_EXTENSION_IDS[@]}"; do
install-extension ${ID}
if [ -n ${ID} ]; then
install-extension ${ID}
fi
done

0 comments on commit 403e620

Please sign in to comment.