~ chicken-core (chicken-5) 1c3bae79df13de019200385947996d9eff82b935
commit 1c3bae79df13de019200385947996d9eff82b935
Author: Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Sun Apr 23 19:43:40 2017 +0200
Commit: Evan Hanson <evhan@foldling.org>
CommitDate: Mon Apr 24 07:43:51 2017 +1200
chicken-install: Document -v and add long option for it
-v was the only option without a long counterpart, so add -verbose.
Signed-off-by: Evan Hanson <evhan@foldling.org>
diff --git a/chicken-install.scm b/chicken-install.scm
index 69179255..22346a0e 100644
--- a/chicken-install.scm
+++ b/chicken-install.scm
@@ -1015,6 +1015,7 @@ usage: chicken-install [OPTION | EXTENSION[:VERSION]] ...
-u -update-db update export database
-repository print path used for egg installation
-override FILENAME override versions for installed eggs with information from file
+ -v -verbose be verbose
chicken-install recognizes the SUDO, http_proxy and proxy_auth environment variables, if set.
@@ -1076,7 +1077,7 @@ EOF
((equal? arg "-dry-run")
(set! do-not-build #t)
(loop (cdr args)))
- ((equal? arg "-v")
+ ((member arg '("-v" "-verbose"))
(set! quiet #f)
(loop (cdr args)))
((member arg '("-k" "-keep"))
diff --git a/manual/Extensions b/manual/Extensions
index 8c074acd..70258228 100644
--- a/manual/Extensions
+++ b/manual/Extensions
@@ -579,6 +579,7 @@ Available options:
; {{-u -update-db}} : update export database
; {{-repository}} : print path to egg repository
; {{-override FILENAME}} : override versions for installed eggs with information given in {{FILENAME}}, which can be generated by {{-scan}} or by the {{-list}} option of the {{chicken-status}} program
+; {{-v -verbose}} : be verbose
{{chicken-install}} recognizes the {{SUDO}}, {{http_proxy}} and {{proxy_auth}} environment variables, if set.
Trap