Skip to content

Commit 9e7a477

Browse files
mokagioclaude
andcommitted
Escape $ in pipeline interpolation
Buildkite's interpolator doesn't support shell parameter expansion (`${VAR#pattern}`). `$$` passes through as a literal `$` to the shell. --- Generated with the help of Claude Code, https://claude.ai/code Co-Authored-By: Claude Code Opus 4.6 <[email protected]>
1 parent 46ebe32 commit 9e7a477

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.buildkite/pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ steps:
4848
if: build.tag =~ /^v/
4949
command: |
5050
make build-resources-xcframework REFRESH_L10N=1 REFRESH_JS_BUILD=1
51-
bundle exec fastlane publish_to_s3 version:${BUILDKITE_TAG#v}
51+
bundle exec fastlane publish_to_s3 version:$${BUILDKITE_TAG#v}
5252
plugins: *plugins

0 commit comments

Comments
 (0)