From 561318249b46a4f51520ef925ee1422e8b76479e Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li Date: Mon, 20 Jan 2025 02:01:36 +0800 Subject: [PATCH] wrapFirefox: quote the makeWrapperArgs Bash array Fix the wrapper build failure caused by the missing quotes. --- pkgs/applications/networking/browsers/firefox/wrapper.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/networking/browsers/firefox/wrapper.nix b/pkgs/applications/networking/browsers/firefox/wrapper.nix index 374d581855e1..550685de16a3 100644 --- a/pkgs/applications/networking/browsers/firefox/wrapper.nix +++ b/pkgs/applications/networking/browsers/firefox/wrapper.nix @@ -372,7 +372,7 @@ let appendToVar makeWrapperArgs --prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH" concatTo makeWrapperArgs oldWrapperArgs - makeWrapper "$oldExe" "''${executablePath}${nameSuffix}" ''${makeWrapperArgs[@]} + makeWrapper "$oldExe" "''${executablePath}${nameSuffix}" "''${makeWrapperArgs[@]}" ############################# # # # END EXTRA PREF CHANGES #