Skip to content

Commit 9bdd515

Browse files
committed
chore: fix shellcheck warnings
1 parent a1ea618 commit 9bdd515

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

server/scripts/upload-test-extensions.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ export PUBLISHERS="DotJoshJohnson eamodio felixfbecker formulahendry HookyQR ms-
2020
echo "Publishing test extensions to '${OVSX_REGISTRY_URL}'"
2121

2222
echo "Creating namespaces..."
23-
for pub in $PUBLISHERS; do ${PROJECT_ROOT}/cli/bin/ovsx create-namespace "${pub}"; done
23+
for pub in $PUBLISHERS; do "${PROJECT_ROOT}/cli/bin/ovsx" create-namespace "${pub}"; done
2424

2525
echo "Publishing extensions..."
26-
find "${SERVER_ROOT}/build/test-extensions-builtin" -name '*.vsix' -exec ${PROJECT_ROOT}/cli/bin/ovsx publish '{}' \;
27-
find "${SERVER_ROOT}/build/test-extensions" -name '*.vsix' -exec ${PROJECT_ROOT}/cli/bin/ovsx publish '{}' \;
26+
find "${SERVER_ROOT}/build/test-extensions-builtin" -name '*.vsix' -exec "${PROJECT_ROOT}/cli/bin/ovsx" publish '{}' \;
27+
find "${SERVER_ROOT}/build/test-extensions" -name '*.vsix' -exec "${PROJECT_ROOT}/cli/bin/ovsx" publish '{}' \;

0 commit comments

Comments
 (0)