diff options
author | William Carroll <wpcarro@gmail.com> | 2020-08-30T23·48+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-08-30T23·48+0100 |
commit | f3047cffc1d847f12c9bb5c0706ea208639d2fdb (patch) | |
tree | 526934f288bffff487eb8ac922db4ab4bcc8c330 | |
parent | 2715591c970b6318c970a12919cc3f1c0e1e889d (diff) |
Surround subshell in 2x-quotes
This wasn't a bug; it's just good practice.
-rw-r--r-- | ci/pipelines/post-receive.nix | 4 |
1 files changed, 3 insertions, 1 deletions
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"; } |