fix: allow --yes in fork command (#7122)

This commit is contained in:
Alexander Petric
2025-11-12 16:32:39 +00:00
committed by GitHub
parent 6ecd4954b2
commit 3baf646089
+1
View File
@@ -477,6 +477,7 @@ const command = new Command()
.command("delete-fork")
.description("Delete a forked workspace and git branch")
.arguments("<fork_name:string>")
.option("-y --yes", "Skip confirmation prompt")
.action(deleteWorkspaceFork as any);
export default command;