bat: fix escaping of shell settings values

(cherry picked from commit adc88786a1)
This commit is contained in:
Zernix2077
2026-07-22 19:28:22 +03:00
committed by github-actions[bot]
parent 23ade373c0
commit 4c8175371b

View File

@@ -8,6 +8,7 @@ let
inherit (builtins) isList;
inherit (lib)
concatMapStrings
escapeShellArg
literalExpression
maintainers
mapAttrs'
@@ -34,7 +35,7 @@ let
else if isBool value then
boolToString value
else
toString value;
escapeShellArg (toString value);
in
{
options.programs.bat = {