Skip to content

Commit 2b4cad5

Browse files
committed
refactor(cli): Replace --force flag by --yes new flag to skip confirmation prompts.
1 parent 493b386 commit 2b4cad5

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.changeset/every-spies-exist.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@cartesi/cli": patch
3+
---
4+
5+
Replace --force flag to the new --yes to skip confirmation prompts on apps remove action.

apps/cli/src/exec/rollups.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ export const removeApplication = async (options: {
549549
const removeArgs = [application];
550550

551551
if (force) {
552-
removeArgs.push("--force");
552+
removeArgs.push("--yes");
553553
}
554554

555555
return execa("docker", [

0 commit comments

Comments
 (0)