From 12142008df0a367bf2119f1752de05f6ada6061a Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Wed, 14 Sep 2022 14:10:34 -0700 Subject: [PATCH] Add a link back to Github to `--help` (but not `-h`) --- src/app.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/app.rs b/src/app.rs index 5348ade..502b13e 100644 --- a/src/app.rs +++ b/src/app.rs @@ -16,6 +16,9 @@ pub fn build_app() -> Command<'static> { "Note: `fd -h` prints a short and concise overview while `fd --help` gives all \ details.", ) + .after_long_help( + "Bugs can be reported on Github: https://github.com/sharkdp/fd" + ) .arg( Arg::new("hidden") .long("hidden")