diff options
author | zimoun <zimon.toutoune@gmail.com> | 2021-03-29 12:18:06 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-04-01 14:58:55 +0200 |
commit | 4056ba364599d772463a1c2b89fd4998197afaa6 (patch) | |
tree | 0c4e28a21ab8e0c6403756b56e2f6af1bea48d02 /guix/scripts/show.scm | |
parent | 0fac33a8ea837a27d911884a04daa347470ebf60 (diff) |
scripts: show: Replace 'args-fold*' by 'parse-command-line'.
* guix/scripts/show.scm (define-command): Replace 'args-fold*' by
'parse-command-line'.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts/show.scm')
-rw-r--r-- | guix/scripts/show.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/guix/scripts/show.scm b/guix/scripts/show.scm index 535d03c1a6..c747eedd21 100644 --- a/guix/scripts/show.scm +++ b/guix/scripts/show.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2019 Simon Tournier <zimon.toutoune@gmail.com> +;;; Copyright © 2019, 2021 Simon Tournier <zimon.toutoune@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,11 +66,9 @@ This is an alias for 'guix package --show='.\n")) result)) (define opts - (args-fold* args %options - (lambda (opt name arg . rest) - (leave (G_ "~A: unrecognized option~%") name)) - handle-argument - '())) + (parse-command-line args %options (list (list)) + #:build-options? #f + #:argument-handler handle-argument)) (unless (assoc-ref opts 'query) (leave (G_ "missing arguments: no package to show~%"))) |