bat: fix escaping of shell settings values

This commit is contained in:
Zernix2077
2026-07-22 19:28:22 +03:00
parent 4f9a49b49c
commit adc88786a1
+2 -1
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 = {