Skip to content

Commit

Permalink
cli: fix adveristing file extension on windows (microsoft#203818)
Browse files Browse the repository at this point in the history
  • Loading branch information
connor4312 committed Jan 30, 2024
1 parent 83d2f06 commit 6291fb2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cli/src/commands/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ use clap::{Args, Parser, Subcommand, ValueEnum};
use const_format::concatcp;

const CLI_NAME: &str = concatcp!(constants::PRODUCT_NAME_LONG, " CLI");
const HELP_COMMANDS: &str = "Usage: {name} [options][paths...]
const HELP_COMMANDS: &str = concatcp!(
"Usage: ",
constants::APPLICATION_NAME,
" [options][paths...]
To read output from another program, append '-' (e.g. 'echo Hello World | {name} -')";
To read output from another program, append '-' (e.g. 'echo Hello World | {name} -')"
);

const STANDALONE_TEMPLATE: &str = concatcp!(
CLI_NAME,
Expand Down

0 comments on commit 6291fb2

Please sign in to comment.