diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 20:34:45 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:17:00 +0200 |
commit | 4ce7c1b35386e3d7b85e9b80414bab19ca798ba8 (patch) | |
tree | 138d85d405bed21f1d3e0153e778c05e1fe7984c /gnu/packages/backup.scm | |
parent | f4f46fc350c134a3573f9f027674b64b33ebdba1 (diff) |
gnu: rsnapshot: Return #t from phases.
* gnu/packages/backup.scm (rsnapshot)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu/packages/backup.scm')
-rw-r--r-- | gnu/packages/backup.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/backup.scm b/gnu/packages/backup.scm index 0b914d9709..f781dc1813 100644 --- a/gnu/packages/backup.scm +++ b/gnu/packages/backup.scm @@ -420,7 +420,7 @@ rdiff-backup is easy to use and settings have sensible defaults.") "t/backup_exec/conf/backup_exec.conf") (("/bin/true") (which "true")) (("/bin/false") (which "false"))) - (zero? (system* "make" "test"))))))) + (invoke "make" "test")))))) (inputs `(("perl" ,perl) ("rsync" ,rsync))) |