Skip to content

Commit

Permalink
Revert dump overwrite default to true (#1352)
Browse files Browse the repository at this point in the history
  • Loading branch information
fantix committed Jul 15, 2024
1 parent e9e4f73 commit aef81d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/commands/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,8 @@ pub struct Dump {
pub format: Option<DumpFormat>,

/// Used to automatically overwrite existing files of the same name. Defaults
/// to `true` when `--all` is used, otherwise `false`.
#[arg(long)]
/// to `true`.
#[arg(long, default_value = "true")]
pub overwrite_existing: bool,
}

Expand Down

0 comments on commit aef81d7

Please sign in to comment.