From 849eebbb38dfc7241494899b49e7e28ee7d661c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Fri, 3 Apr 2015 22:10:02 +0200 Subject: [PATCH] ui: Recognize 'guix help'. Suggested by Andy Wingo. * guix/ui.scm (guix-main): Add "help" case. --- guix/ui.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/guix/ui.scm b/guix/ui.scm index 4929f93590..67c65aa14d 100644 --- a/guix/ui.scm +++ b/guix/ui.scm @@ -868,6 +868,8 @@ found." (format (current-error-port) (_ "guix: unrecognized option '~a'~%") o) (show-guix-usage)) + (("help" args ...) + (show-guix-help)) ((command args ...) (apply run-guix-command (string->symbol command)