Skip to content

Commit

Permalink
cli: polish serve-web help
Browse files Browse the repository at this point in the history
Fixes #191601
  • Loading branch information
connor4312 committed Aug 30, 2023
1 parent fe0237c commit d40aae4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions cli/src/commands/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const VERSION: &str = concatcp!(NUMBER_IN_VERSION, " (commit ", COMMIT_IN_VERSIO
#[clap(
help_template = INTEGRATED_TEMPLATE,
long_about = None,
name = constants::APPLICATION_NAME,
version = VERSION,
)]
pub struct IntegratedCli {
Expand Down Expand Up @@ -84,6 +85,7 @@ pub struct CliCore {
help_template = STANDALONE_TEMPLATE,
long_about = None,
version = VERSION,
name = constants::APPLICATION_NAME,
)]
pub struct StandaloneCli {
#[clap(flatten)]
Expand Down Expand Up @@ -173,6 +175,7 @@ pub enum Commands {
Version(VersionArgs),

/// Runs a local web version of VS Code.
#[clap(about = concatcp!("Runs a local web version of ", constants::PRODUCT_NAME_LONG))]
ServeWeb(ServeWebArgs),

/// Runs the control server on process stdin/stdout
Expand Down

0 comments on commit d40aae4

Please sign in to comment.