diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-01-08 18:17:22 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-01-08 18:38:15 +0100 |
commit | a21a906fcd31c918431622f7ac56b21c269368fb (patch) | |
tree | feee01bc6c8cbaf6ae47d14b5a59d2b42766a480 | |
parent | 08fdee39110a51cd76afac7a9adf10c794a4c272 (diff) | |
download | guix-a21a906fcd31c918431622f7ac56b21c269368fb.tar.gz |
pull: Document '--system'.
Fixes <https://bugs.gnu.org/34010>. Reported by Alex Kost <alezost@gmail.com>. This is a followup to 5923102f7b58f0a0120926ec5b81ed48b26a188e. * guix/scripts/pull.scm (show-help): Add '--system'.
-rw-r--r-- | guix/scripts/pull.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/scripts/pull.scm b/guix/scripts/pull.scm index 862556d12b..e7ff44c0d5 100644 --- a/guix/scripts/pull.scm +++ b/guix/scripts/pull.scm @@ -1,5 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU -;;; Copyright © 2013, 2014, 2015, 2017, 2018 Ludovic Courtès <ludo@gnu.org> +;;; Copyright © 2013, 2014, 2015, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> ;;; ;;; This file is part of GNU Guix. @@ -89,6 +89,8 @@ Download and deploy the latest version of Guix.\n")) (display (G_ " -n, --dry-run show what would be pulled and built")) (display (G_ " + -s, --system=SYSTEM attempt to build for SYSTEM--e.g., \"i686-linux\"")) + (display (G_ " --bootstrap use the bootstrap Guile to build the new Guix")) (newline) (show-build-options-help) |