about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-30T23·48+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-30T23·48+0100
commitf3047cffc1d847f12c9bb5c0706ea208639d2fdb (patch)
tree526934f288bffff487eb8ac922db4ab4bcc8c330
parent2715591c970b6318c970a12919cc3f1c0e1e889d (diff)
Surround subshell in 2x-quotes
This wasn't a bug; it's just good practice.
-rw-r--r--ci/pipelines/post-receive.nix4
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";
     }