summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 2898f09..e178427 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -22,6 +22,10 @@ enum Commands {
git_repo: String,
},
+ /// Create a repository from an existing addon
+ Create {
+ },
+
/// Update a repository
Update {},
@@ -49,6 +53,13 @@ fn main() {
}
}
+ Commands::Create { } => {
+ let root = commands::search_project_root();
+ if commands::check_initialization(&root) {
+ commands::create_addon(&root, cli.verbose);
+ }
+ }
+
Commands::Update {} => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {