Merge pull request #1506 from lann/fix-build-up-flag

build: Fix --up long flag name
This commit is contained in:
Lann 2023-05-17 12:50:37 -04:00 committed by GitHub
commit dda80ff266
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ pub struct BuildCommand {
pub component_id: Option<String>,
/// Run the application after building.
#[clap(name = BUILD_UP_OPT, short = 'u', long)]
#[clap(name = BUILD_UP_OPT, short = 'u', long = "up")]
pub up: bool,
#[clap(requires = BUILD_UP_OPT)]