Skip to content

Commit 0659eac

Browse files
committed
chore: avoid expansion syntax
1 parent 775ca29 commit 0659eac

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.evergreen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4113,8 +4113,8 @@ functions:
41134113
source .evergreen/setup-env.sh
41144114
# Fetch Node.js version from VS Code's .nvmrc, default to 22.20.0 if unavailable
41154115
export NODE_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
4116-
echo "Using Node.js version for VS Code extension tests: ${NODE_VERSION}"
4117-
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
4116+
echo "Using Node.js version for VS Code extension tests: $NODE_VERSION"
4117+
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="$NODE_VERSION" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
41184118
docker run \
41194119
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
41204120
-c 'cd /tmp/build && ./testing/test-vscode.sh'

.evergreen/evergreen.yml.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -331,9 +331,9 @@ 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-
export NODE_JS_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
335-
echo "Using Node.js version for VS Code extension tests: ${NODE_JS_VERSION}"
336-
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_JS_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
334+
export NODE_VERSION=$(curl -fsSL https://raw.githubusercontent.com/microsoft/vscode/refs/heads/main/.nvmrc | tr -d '[:space:]' || echo "22.20.0")
335+
echo "Using Node.js version for VS Code extension tests: $NODE_VERSION"
336+
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="$NODE_VERSION" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
337337
docker run \
338338
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
339339
-c 'cd /tmp/build && ./testing/test-vscode.sh'

0 commit comments

Comments
 (0)