bat: fix escaping of shell settings values (#544606)

This commit is contained in:
Fernando Rodrigues
2026-07-23 01:23:38 +00:00
committed by GitHub
+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 = {