summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorAlex Kost <alezost@gmail.com>2015-10-27 21:13:05 +0300
committerAlex Kost <alezost@gmail.com>2015-10-28 21:51:59 +0300
commit7191adc5cf864d75debcc618937b7a6292491445 (patch)
treeaf8f1da0cc3f7d98422639ab9455b04bafdcb08b /doc
parent9a067efdb2076293e505c29a51a9819ff025b056 (diff)
refresh: Support comma-separated updater types.
* guix/scripts/refresh.scm (%options): Handle comma-separated types for '--type' option. (guix-refresh): Adjust accordingly. (show-help): Likewise. * doc/guix.texi (Invoking guix refresh): Document it.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 9878b93ddba..4fbe0576141 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -4276,8 +4276,8 @@ inconvenient.
4276 4276
4277@item --type=@var{updater} 4277@item --type=@var{updater}
4278@itemx -t @var{updater} 4278@itemx -t @var{updater}
4279Select only packages handled by @var{updater}. Currently, @var{updater} 4279Select only packages handled by @var{updater} (may be a comma-separated
4280may be one of: 4280list of updaters). Currently, @var{updater} may be one of:
4281 4281
4282@table @code 4282@table @code
4283@item gnu 4283@item gnu
@@ -4292,7 +4292,7 @@ For instance, the following commands only checks for updates of Emacs
4292packages hosted at @code{elpa.gnu.org} and updates of CRAN packages: 4292packages hosted at @code{elpa.gnu.org} and updates of CRAN packages:
4293 4293
4294@example 4294@example
4295$ guix refresh -t elpa -t cran 4295$ guix refresh --type=elpa,cran
4296gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0 4296gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
4297gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9 4297gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
4298@end example 4298@end example