summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorhenriquelalves <henriquelalves@gmail.com>2025-01-18 16:57:18 +0200
committerhenriquelalves <henriquelalves@gmail.com>2025-01-18 16:57:18 +0200
commite9ea9e8658a069879447e7ccf5b8e9112046eff9 (patch)
tree5b629620442c413293405d2ac83080ffab43f718 /src/main.rs
parent6b2b018b9cc2985e388eeb48d54df39d00c0d254 (diff)
downloadglam-e9ea9e8658a069879447e7ccf5b8e9112046eff9.tar.gz
glam-e9ea9e8658a069879447e7ccf5b8e9112046eff9.tar.bz2
glam-e9ea9e8658a069879447e7ccf5b8e9112046eff9.zip
Add plugin creation to empty repositories commandHEADmain
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) {