Skip to content

Commit 55435bf

Browse files
committed
Escape $ so buildkite upload does not try to interpolate
1 parent 626f901 commit 55435bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.buildkite/pull_request_pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ steps:
143143
docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
144144
docker run test-runner-image /bin/bash -c '
145145
source ci/get-test-half.sh
146-
specs=$(get_test_half 0)
146+
specs=\$(get_test_half 0)
147147
./gradlew --info --stacktrace -PrunTestsInFIPSMode=true runIntegrationTests -PrubyIntegrationSpecs="$specs"
148148
'
149149
@@ -165,7 +165,7 @@ steps:
165165
docker build -t test-runner-image -f x-pack/distributions/internal/observabilitySRE/docker/Dockerfile .
166166
docker run test-runner-image /bin/bash -c '
167167
source ci/get-test-half.sh
168-
specs=$(get_test_half 1)
168+
specs=\$(get_test_half 1)
169169
./gradlew --info --stacktrace -PrunTestsInFIPSMode=true runIntegrationTests -PrubyIntegrationSpecs="$specs"
170170
'
171171

0 commit comments

Comments
 (0)