diff options
author | Ludovic Courtès <ludo@gnu.org> | 2014-10-29 23:40:17 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2014-10-30 14:08:03 +0100 |
commit | b9113adf4539ddb38794ab53f4abe3e534f155d8 (patch) | |
tree | 2d9654ddf1313ac11a78b20e5d7a4c4e2ad4ac6d | |
parent | 82350397ed4340e84e54ed73db5568960b72f872 (diff) | |
download | guix-b9113adf4539ddb38794ab53f4abe3e534f155d8.tar guix-b9113adf4539ddb38794ab53f4abe3e534f155d8.tar.gz |
environment: Improve '--help' output.
* guix/scripts/environment.scm (show-help): Align --pure and
--search-paths with other long options; add 'newline' call before
'show-bug-report-information' call.
-rw-r--r-- | guix/scripts/environment.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/guix/scripts/environment.scm b/guix/scripts/environment.scm index 0ca556c47b..81bad963f6 100644 --- a/guix/scripts/environment.scm +++ b/guix/scripts/environment.scm @@ -100,9 +100,9 @@ shell command in that environment.\n")) (display (_ " -E, --exec=COMMAND execute COMMAND in new environment")) (display (_ " - --pure unset existing environment variables")) + --pure unset existing environment variables")) (display (_ " - --search-paths display needed environment variable definitions")) + --search-paths display needed environment variable definitions")) (newline) (show-build-options-help) (newline) @@ -110,6 +110,7 @@ shell command in that environment.\n")) -h, --help display this help and exit")) (display (_ " -V, --version display version information and exit")) + (newline) (show-bug-report-information)) (define %default-options |