From 2ea5ef246bf47c5825e49a733091c25fd1277ea8 Mon Sep 17 00:00:00 2001 From: Matt Brown Date: Tue, 6 Feb 2024 14:06:51 -0500 Subject: [PATCH] Support --overwrite in command --- src/cli/lib.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/cli/lib.rs b/src/cli/lib.rs index 4e92e606..182c6e7e 100644 --- a/src/cli/lib.rs +++ b/src/cli/lib.rs @@ -191,6 +191,11 @@ pub fn init( .required(false) .help("If passed, will just verify that codegen is accurate"), ) + .arg( + arg!(--"overwrite") + .required(false) + .help("If passed, will overwrite any conflicting files"), + ) .arg( arg!(--"threads" ) .required(false)