File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -4112,7 +4112,7 @@ functions:
41124112 {
41134113 source .evergreen/setup-env.sh
41144114 # Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable
4115- NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
4115+ export NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
41164116 echo "Using Node.js version for VS Code extension tests: ${NODE_JS_VERSION}"
41174117 (cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_JS_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
41184118 docker run \
Original file line number Diff line number Diff line change @@ -331,7 +331,7 @@ functions:
331331 {
332332 source .evergreen/setup-env.sh
333333 # Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable
334- NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
334+ export NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
335335 echo "Using Node.js version for VS Code extension tests: ${NODE_JS_VERSION}"
336336 (cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_JS_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
337337 docker run \
You can’t perform that action at this time.
0 commit comments