From 2d09206fa7d6a915e7ad0dd054d58080794d0c84 Mon Sep 17 00:00:00 2001 From: Benjamin Koch Date: Tue, 19 Jan 2021 01:54:19 +0100 Subject: [PATCH] Add missing quotes --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index faa6735..6939647 100644 --- a/flake.nix +++ b/flake.nix @@ -13,7 +13,7 @@ nix-bundle = import self { nixpkgs = nixpkgs'; }; script = nixpkgs'.writeScript "startup" '' #!/bin/sh - .${nix-bundle.nix-user-chroot}/bin/nix-user-chroot -n ./nix -- ${program} $@ + .${nix-bundle.nix-user-chroot}/bin/nix-user-chroot -n ./nix -- ${program} "$@" ''; in nix-bundle.makebootstrap { targets = [ script ];