summaryrefslogtreecommitdiff
path: root/guix/ui.scm
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2020-09-01 22:23:50 +0200
committerLudovic Courtès <ludo@gnu.org>2020-09-10 12:27:24 +0200
commit991fdb0d6496358c8f11708b1d0de4f06ebf7785 (patch)
tree4f0101fba583f1d1d97fbda2dc03f1f996295093 /guix/ui.scm
parentf17e1802ec325e5cc86d4908f05ac69aafdf39da (diff)
downloadguix-patches-991fdb0d6496358c8f11708b1d0de4f06ebf7785.tar
guix-patches-991fdb0d6496358c8f11708b1d0de4f06ebf7785.tar.gz
ui: '--help' output links to <https://guix.gnu.org/help/>.
* guix/ui.scm (show-bug-report-information): Link to <https://guix.gnu.org/help/> instead of <https://www.gnu.org/gethelp/>. The former is much more useful and includes links to GNU manuals.
Diffstat (limited to 'guix/ui.scm')
-rw-r--r--guix/ui.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/ui.scm b/guix/ui.scm
index 9513f42b93..6841b0f324 100644
--- a/guix/ui.scm
+++ b/guix/ui.scm
@@ -545,8 +545,9 @@ There is NO WARRANTY, to the extent permitted by law.
Report bugs to: ~a.") %guix-bug-report-address)
(format #t (G_ "
~a home page: <~a>") %guix-package-name %guix-home-page-url)
- (display (G_ "
-General help using GNU software: <http://www.gnu.org/gethelp/>"))
+ (format #t (G_ "
+General help using Guix and GNU software: <~a>")
+ "https://guix.gnu.org/help/")
(newline))
(define (augmented-system-error-handler file)