copy: Actually implement '--dry-run'.

* guix/scripts/copy.scm (%options): Add '--dry-run'.
This commit is contained in:
Ludovic Courtès 2020-03-22 12:25:39 +01:00
parent 7473238f7d
commit 81c0b52bd6
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 4 additions and 0 deletions

View File

@ -138,6 +138,10 @@ Copy ITEMS to or from the specified host over SSH.\n"))
(let ((level (string->number* arg)))
(alist-cons 'verbosity level
(alist-delete 'verbosity result)))))
(option '(#\n "dry-run") #f #f
(lambda (opt name arg result)
(alist-cons 'dry-run? #t (alist-cons 'graft? #f result))))
(option '(#\h "help") #f #f
(lambda args
(show-help)