diff options
author | zimoun <zimon.toutoune@gmail.com> | 2020-05-11 01:40:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2020-05-11 23:30:54 +0200 |
commit | baf1ce82b1fa4ccdfe79d2d3d2695c063ead321c (patch) | |
tree | 20d14d539cf47820f193d961a4b56e947a7f4f80 /guix/scripts/show.scm | |
parent | bdc801e1cfa8e436890da5bd755dd7759cb0f748 (diff) |
guix package, show: Support multiple queries.
* guix/scripts/package.scm (process-query): Show multiple queries.
* guix/scripts/show.scm (guix-show): Reverse to display in order.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'guix/scripts/show.scm')
-rw-r--r-- | guix/scripts/show.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/show.scm b/guix/scripts/show.scm index ef64b5755b..a2b0030a63 100644 --- a/guix/scripts/show.scm +++ b/guix/scripts/show.scm @@ -73,4 +73,4 @@ This is an alias for 'guix package --show='.\n")) (unless (assoc-ref opts 'query) (leave (G_ "missing arguments: no package to show~%"))) - (guix-package* opts)) + (guix-package* (reverse opts))) |