about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-05-31T17·23+0300
committerclbot <clbot@tvl.fyi>2023-06-01T10·34+0000
commit4cf0ee8ea302e070d12526bb42937e8c7e8c8f7b (patch)
tree54e406f3b62fccad0b110007391bc9758457b791
parent70b87c1797832bb4930fd6bce779c272119c4479 (diff)
docs(nix/buildkite): escape "release" in warning r/6226
When using the buildkite tooling with `postBuild` parameter set, the
following error message is shown:

```
This replaces the previous boolean postBuild API in extra
step definitions. Please remove the postBuild parameter from
this step and instead set phase = release;.
```

However, `release` is no symbol, this should be a string.

Update the message to reflect that.

Change-Id: I341c81d862204db06946512428910cada28481ca
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8690
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--nix/buildkite/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/buildkite/default.nix b/nix/buildkite/default.nix
index b04dc55a0b..98f7dfbac0 100644
--- a/nix/buildkite/default.nix
+++ b/nix/buildkite/default.nix
@@ -386,7 +386,7 @@ rec {
 
         This replaces the previous boolean `postBuild` API in extra
         step definitions. Please remove the `postBuild` parameter from
-        this step and instead set `phase = ${phase};`.
+        this step and instead set `phase = "${phase}";`.
       ''
         validPhase;