File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2- set -euo pipefail
2+ set -u
33
44SCRIPT_DIR=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
55SERVER_ROOT=$( dirname " ${SCRIPT_DIR} " )
6+ PROJECT_ROOT=$( dirname " ${SERVER_ROOT} " )
67
78TEST_EXTENSIONS_DIRECTORY=" ${SERVER_ROOT} /build/test-extensions"
89
@@ -19,8 +20,8 @@ export PUBLISHERS="DotJoshJohnson eamodio felixfbecker formulahendry HookyQR ms-
1920echo " Publishing test extensions to '${OVSX_REGISTRY_URL} '"
2021
2122echo " Creating namespaces..."
22- for pub in $PUBLISHERS ; do cli/lib /ovsx create-namespace " ${pub} " ; done
23+ for pub in $PUBLISHERS ; do ${PROJECT_ROOT} / cli/bin /ovsx create-namespace " ${pub} " ; done
2324
2425echo " Publishing extensions..."
25- find " ${SERVER_ROOT} /build/test-extensions-builtin" -name ' *.vsix' -exec cli/lib /ovsx publish ' {}' \;
26- find " ${SERVER_ROOT} /build/test-extensions" -name ' *.vsix' -exec cli/lib /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 ' {}' \;
You can’t perform that action at this time.
0 commit comments