From c45d8485717b146a117ac9eddd70717363d88946 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Sat, 2 Mar 2024 23:09:04 +0100 Subject: [PATCH] Fix bug in `nix-secret-wrapper` Signed-off-by: magic_rb --- scripts/nix-secret-wrapper/nix-secret-wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/nix-secret-wrapper/nix-secret-wrapper.sh b/scripts/nix-secret-wrapper/nix-secret-wrapper.sh index e23259f..a83bd33 100644 --- a/scripts/nix-secret-wrapper/nix-secret-wrapper.sh +++ b/scripts/nix-secret-wrapper/nix-secret-wrapper.sh @@ -66,7 +66,7 @@ for arg in "$@" ; do esac done -( exec -a $0 .nix-unwrapped "''${new_args[@]}" ) +( exec -a $0 .nix-unwrapped "${new_args[@]}" ) ret_code=$? post_lock_hash="$(sha256sum flake-secret.lock | cut -f1 -d' ')"