Skip to content

Commit

Permalink
fix: change --ignore-existing to --force
Browse files Browse the repository at this point in the history
  • Loading branch information
JimFuller-RedHat authored and ctron committed Jul 17, 2024
1 parent 316a4bc commit 98714b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cmd/create/confidential.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl CreateConfidential {

if !self.common.force && config.clients.contains_key(&self.common.name) {
bail!(
"A client named '{}' already exists. You need to delete it first or use --ignore-existing",
"A client named '{}' already exists. You need to delete it first or use --force",
self.common.name
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/create/public.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ impl CreatePublic {

if !self.common.force && config.clients.contains_key(&self.common.name) {
bail!(
"A client named '{}' already exists. You need to delete it first or use --ignore-existing",
"A client named '{}' already exists. You need to delete it first or use --force",
self.common.name
);
}
Expand Down

0 comments on commit 98714b0

Please sign in to comment.