diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2018-04-09 16:57:25 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2018-04-09 16:57:25 +0200 |
commit | 065f2897c4028cf9389e83150a912696362cacfd (patch) | |
tree | 750e636a287eaea00caa77a21004d0e660f9a978 | |
parent | bb9928397475b5ce2e7ea1adc77c818015275fac (diff) | |
download | nixos-065f2897c4028cf9389e83150a912696362cacfd.tar nixos-065f2897c4028cf9389e83150a912696362cacfd.tar.gz nixos-065f2897c4028cf9389e83150a912696362cacfd.tar.bz2 nixos-065f2897c4028cf9389e83150a912696362cacfd.tar.xz nixos-065f2897c4028cf9389e83150a912696362cacfd.zip |
escape in prune
-rw-r--r-- | custom/borgbackup.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/custom/borgbackup.nix b/custom/borgbackup.nix index 2cd42e68..d46c323c 100644 --- a/custom/borgbackup.nix +++ b/custom/borgbackup.nix | |||
@@ -170,7 +170,7 @@ in { | |||
170 | --lock-wait ${toString tCfg.lockWait} \ | 170 | --lock-wait ${toString tCfg.lockWait} \ |
171 | --list \ | 171 | --list \ |
172 | --stats \ | 172 | --stats \ |
173 | --prefix "${cfg.prefix}${escapeSystemdPath path}" \ | 173 | --prefix ${escapeShellArg "${cfg.prefix}${escapeSystemdPath path}"} \ |
174 | ${escapeShellArgs args} \ | 174 | ${escapeShellArgs args} \ |
175 | ${tCfg.repo} | 175 | ${tCfg.repo} |
176 | '') tCfg.prune); | 176 | '') tCfg.prune); |