Surround subshell in 2x-quotes

This wasn't a bug; it's just good practice.
This commit is contained in:
William Carroll 2020-08-31 00:48:30 +01:00
parent 2715591c97
commit f3047cffc1

View file

@ -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";
}