summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-06-29 13:08:45 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-07-21 13:25:08 +0200
commitd51fad98de71f90ac62883346d0f707fef89ab89 (patch)
tree64dba5144a4200e597886eb738e6abafa4f146bb
parent70850bb19239bc7d59a04ccace2b43f262dc08a6 (diff)
Fix: Remove indention from after_help() text
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net>
-rw-r--r--src/cli.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cli.rs b/src/cli.rs
index a8b0cc1..512e35a 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -27,11 +27,11 @@ pub fn cli<'a>() -> App<'a> {
.version(crate_version!())
.about("Generic Build Orchestration System for building linux packages with docker")
- .after_help(r#"
+ .after_help(indoc::indoc!(r#"
The following environment variables can be passed to butido:
RUST_LOG - to enable logging, for exact usage see the rust cookbook
- "#)
+ "#))
.arg(Arg::new("hide_bars")
.required(false)