From 4cf0ee8ea302e070d12526bb42937e8c7e8c8f7b Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Wed, 31 May 2023 20:23:55 +0300 Subject: docs(nix/buildkite): escape "release" in warning 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 Reviewed-by: tazjin Tested-by: BuildkiteCI --- nix/buildkite/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'nix') 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; -- cgit 1.4.1