mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
substitute: Fix handling of short option "-h".
The short option was listed in the help-text, but not recognized.
This commit is contained in:
parent
68ce40cad7
commit
f3b20baa4d
1 changed files with 1 additions and 1 deletions
|
@ -777,7 +777,7 @@ (define reply-port
|
|||
(loop))))))
|
||||
((or ("-V") ("--version"))
|
||||
(show-version-and-exit "guix substitute"))
|
||||
(("--help")
|
||||
((or ("-h") ("--help"))
|
||||
(show-help))
|
||||
(opts
|
||||
(leave (G_ "~a: unrecognized options~%") opts))))))
|
||||
|
|
Loading…
Reference in a new issue