mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-06 19:09:27 +01:00
scripts: home: Support dry-run.
* guix/scripts/home.scm (%options): Add option for dry-run.
This commit is contained in:
parent
5333d2cac6
commit
6a544b2130
1 changed files with 3 additions and 0 deletions
|
@ -111,6 +111,9 @@ Some ACTIONS support additional ARGS.\n"))
|
||||||
(lambda args
|
(lambda args
|
||||||
(show-help)
|
(show-help)
|
||||||
(exit 0)))
|
(exit 0)))
|
||||||
|
(option '(#\n "dry-run") #f #f
|
||||||
|
(lambda (opt name arg result)
|
||||||
|
(alist-cons 'dry-run? #t result)))
|
||||||
(option '(#\V "version") #f #f
|
(option '(#\V "version") #f #f
|
||||||
(lambda args
|
(lambda args
|
||||||
(show-version-and-exit "guix show")))
|
(show-version-and-exit "guix show")))
|
||||||
|
|
Loading…
Add table
Reference in a new issue