Skip to content

Commit a721e4a

Browse files
committed
chore: use export
1 parent 5a1cd14 commit a721e4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 \

.evergreen/evergreen.yml.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 \

0 commit comments

Comments
 (0)