From f3047cffc1d847f12c9bb5c0706ea208639d2fdb Mon Sep 17 00:00:00 2001 From: William Carroll Date: Mon, 31 Aug 2020 00:48:30 +0100 Subject: Surround subshell in 2x-quotes This wasn't a bug; it's just good practice. --- ci/pipelines/post-receive.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/pipelines/post-receive.nix b/ci/pipelines/post-receive.nix index d41c3b67b328..6353db4602ad 100644 --- a/ci/pipelines/post-receive.nix +++ b/ci/pipelines/post-receive.nix @@ -19,7 +19,9 @@ let } { key = "build-briefcase"; - command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace"; + command = '' + nix-build . -I briefcase="$(pwd)" --no-out-link --show-trace + ''; label = ":nix: build briefcase"; depends_on = "lint-secrets"; } -- cgit 1.4.1