From a2a3a8bc48648483ec7e822fb93e02d31bb5a61f Mon Sep 17 00:00:00 2001 From: shimun Date: Sun, 13 Dec 2020 21:52:52 +0100 Subject: [PATCH] quote args --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 02a702e..c6a380a 100644 --- a/default.nix +++ b/default.nix @@ -19,7 +19,7 @@ let brownpaper = sequoia-openpgp; # requires gmp as well }; client = pkgs.writeShellScriptBin "brownpaper" '' - PATH=${pkgs.bash}/bin/:${pkgs.gnupg}/bin/:${pkgs.curl}/bin/:$PATH ${./bp.sh} $@ + PATH=${pkgs.bash}/bin/:${pkgs.gnupg}/bin/:${pkgs.curl}/bin/:$PATH ${./bp.sh} "$@" ''; in { server = (crate2nix_tools.generatedCargoNix { inherit name src; }); inherit client; }