fix(ci): escape parens in Nushell interpolated string #13

Merged
David merged 2 commits from fix/nu-string-paren into main 2026-05-14 01:02:36 +02:00
Owner

The Publish binary as Generic Package step in build-oci-image.yml failed with:

Command `ignoring` not found

Nushell evaluates (...) inside $"..." strings as a subexpression. The literal (ignoring 404) in the log message was being parsed as a call to a command named ignoring, blowing up the workflow before curl ran. Switching to a dashed clause keeps the message readable and stops the parser from treating it as code.

Test plan

  • Re-run the build-oci-image workflow on this branch and confirm the Publish binary as Generic Package step proceeds past the print line.
The `Publish binary as Generic Package` step in `build-oci-image.yml` failed with: ``` Command `ignoring` not found ``` Nushell evaluates `(...)` inside `$"..."` strings as a subexpression. The literal `(ignoring 404)` in the log message was being parsed as a call to a command named `ignoring`, blowing up the workflow before curl ran. Switching to a dashed clause keeps the message readable and stops the parser from treating it as code. ## Test plan - [ ] Re-run the `build-oci-image` workflow on this branch and confirm the `Publish binary as Generic Package` step proceeds past the print line.
fix(ci): escape parens in Nushell interpolated string
Some checks failed
Check / fmt + clippy + build + tests (pull_request) Failing after 2s
ec99119a9d
Nushell evaluates `(...)` inside `$"..."` as a subexpression, so `(ignoring 404)` was parsed as a call to a command named `ignoring`, causing the workflow step to fail before curl ran. Replace the parenthetical with a dashed clause so the message renders literally.
Merge branch 'main' into fix/nu-string-paren
All checks were successful
Create release / Create release from merged PR (pull_request) Has been skipped
Check / fmt + clippy + build + tests (pull_request) Successful in 24s
e4e7edf6fd
David merged commit 02ebcf8acc into main 2026-05-14 01:02:36 +02:00
David deleted branch fix/nu-string-paren 2026-05-14 01:02:36 +02:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
pandoras-box/monkey!13
No description provided.