From 8bdcbec5d70e1866931ee98ac0d288a1c2e3d9b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Mon, 3 Feb 2025 02:41:09 +0100 Subject: [PATCH] fix(publish): correct coloring in --help (#27939) --- cli/args/flags.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cli/args/flags.rs b/cli/args/flags.rs index 7b640a446037cf..4f6d8bdb8c22db 100644 --- a/cli/args/flags.rs +++ b/cli/args/flags.rs @@ -3358,8 +3358,8 @@ fn publish_subcommand() -> Command { .arg( Arg::new("set-version") .long("set-version") - .help("Set version for a package to be published. - This flag can be used while publishing individual packages and cannot be used in a workspace.") + .help(cstr!("Set version for a package to be published. + This flag can be used while publishing individual packages and cannot be used in a workspace.")) .value_name("VERSION") .help_heading(PUBLISH_HEADING) )