mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-12 01:59:37 +08:00
mbsync: support maildir paths containing spaces
HM would previously create several folders instead of just one with the space escaped. Fixes https://github.com/nix-community/home-manager/issues/6569
This commit is contained in:
@@ -288,7 +288,8 @@ in {
|
||||
createMaildir =
|
||||
hm.dag.entryBetween [ "linkGeneration" ] [ "writeBoundary" ] ''
|
||||
run mkdir -m700 -p $VERBOSE_ARG ${
|
||||
concatMapStringsSep " " (a: a.maildir.absPath) mbsyncAccounts
|
||||
concatMapStringsSep " " (a: escapeShellArg a.maildir.absPath)
|
||||
mbsyncAccounts
|
||||
}
|
||||
'';
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user