From 44683d04aa6d3a42643c228d3290b8e175a33fc0 Mon Sep 17 00:00:00 2001 From: parazyd Date: Sat, 30 Apr 2022 10:21:51 +0200 Subject: [PATCH] util/cli_desc: Add newline before the ansi logo. --- src/util/cli.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util/cli.rs b/src/util/cli.rs index 6009ba4f7..dc5ef1545 100644 --- a/src/util/cli.rs +++ b/src/util/cli.rs @@ -116,6 +116,7 @@ pub const ANSI_LOGO: &str = include_str!("../../contrib/darkfi.ansi"); macro_rules! cli_desc { () => {{ let mut desc = env!("CARGO_PKG_DESCRIPTION").to_string(); + desc.push_str("\n"); desc.push_str(darkfi::util::cli::ANSI_LOGO); Box::leak(desc.into_boxed_str()) as &'static str }};