summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-06-29 13:08:45 +0200
committerMatthias Beyer <mail@beyermatthias.de>2021-08-31 08:49:42 +0200
commitd8931417f0ec1ada88dde1581557f82b6cf6a976 (patch)
tree63cc503a724e3b8a31d12090a8212680af3f896b
parent150311c1fa9cb3ac7b9e9a732c2c503c718b3a39 (diff)
Fix: Remove indention from after_help() text
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net> (cherry picked from commit d51fad98de71f90ac62883346d0f707fef89ab89)
-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)