diff options
author | henriquelalves <henriquelalves@gmail.com> | 2025-01-18 16:57:18 +0200 |
---|---|---|
committer | henriquelalves <henriquelalves@gmail.com> | 2025-01-18 16:57:18 +0200 |
commit | e9ea9e8658a069879447e7ccf5b8e9112046eff9 (patch) | |
tree | 5b629620442c413293405d2ac83080ffab43f718 /src/main.rs | |
parent | 6b2b018b9cc2985e388eeb48d54df39d00c0d254 (diff) | |
download | glam-e9ea9e8658a069879447e7ccf5b8e9112046eff9.tar.gz glam-e9ea9e8658a069879447e7ccf5b8e9112046eff9.tar.bz2 glam-e9ea9e8658a069879447e7ccf5b8e9112046eff9.zip |
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 11 |
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) { |