From b00b47c5f2e9ea3a111d3be083570a7c726830ba Mon Sep 17 00:00:00 2001 From: Michael Brewer Date: Thu, 2 May 2024 01:01:01 -0700 Subject: [PATCH] Update vscode-web/run.sh Co-authored-by: Muhammad Atif Ali --- vscode-web/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-web/run.sh b/vscode-web/run.sh index 6bbc06d..17a2603 100755 --- a/vscode-web/run.sh +++ b/vscode-web/run.sh @@ -11,7 +11,7 @@ if [ -n "${EXTENSIONS_DIR}" ]; then fi run_vscode_web() { - echo "👷 Running $VSCODE_SERVER serve-local --port ${PORT} --host 127.0.0.1 --accept-server-license-terms serve-local --without-connection-token --telemetry-level ${TELEMETRY_LEVEL} in the background..." + echo "👷 Running $VSCODE_WEB serve-local --port ${PORT} --host 127.0.0.1 --accept-server-license-terms serve-local --without-connection-token --telemetry-level ${TELEMETRY_LEVEL} in the background..." echo "Check logs at ${LOG_PATH}!" "$VSCODE_WEB" serve-local "$EXTENSION_ARG" --port "${PORT}" --host 127.0.0.1 --accept-server-license-terms serve-local --without-connection-token --telemetry-level "${TELEMETRY_LEVEL}" > "${LOG_PATH}" 2>&1 & }