Merge pull request #336890 from emilazy/push-xmwppmokytwn

mesonEmulatorHook: don’t use `lib.escapeShellArg`
This commit is contained in:
Nick Cao 2024-08-23 23:04:27 -04:00 committed by GitHub
commit 1d11c65320
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -5674,7 +5674,7 @@ with pkgs;
substitutions = {
crossFile = writeText "cross-file.conf" ''
[binaries]
exe_wrapper = ${lib.escapeShellArg (stdenv.targetPlatform.emulator pkgs)}
exe_wrapper = '${lib.escape [ "'" "\\" ] (stdenv.targetPlatform.emulator pkgs)}'
'';
};
}