bash: escape alias values
This should allow use of the apostrophe character within aliases without having to escape them manually. Fixes #273
This commit is contained in:
parent
dfaccdd03b
commit
10865f9952
|
@ -130,7 +130,7 @@ in
|
|||
config = (
|
||||
let
|
||||
aliasesStr = concatStringsSep "\n" (
|
||||
mapAttrsToList (k: v: "alias ${k}='${v}'") cfg.shellAliases
|
||||
mapAttrsToList (k: v: "alias ${k}=${escapeShellArg v}") cfg.shellAliases
|
||||
);
|
||||
|
||||
shoptsStr = concatStringsSep "\n" (
|
||||
|
|
Loading…
Reference in a new issue