Skip to content

Commit

Permalink
Remove the short option -o for --overwrite (#1483)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Jul 24, 2024
1 parent 13ed0f2 commit c2b6d2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion FULL_HELP_DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ Initialize a Soroban project with an example contract
* `-f`, `--frontend-template <FRONTEND_TEMPLATE>` — An optional flag to pass in a url for a frontend template repository.

Default value: ``
* `-o`, `--overwrite` — Overwrite all existing files.
* `--overwrite` — Overwrite all existing files.



Expand Down
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/contract/init.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub struct Cmd {
)]
pub frontend_template: String,

#[arg(short, long, long_help = "Overwrite all existing files.")]
#[arg(long, long_help = "Overwrite all existing files.")]
pub overwrite: bool,
}

Expand Down

0 comments on commit c2b6d2f

Please sign in to comment.