From 0f75eec7337012dacfa627952fe3785cf0589151 Mon Sep 17 00:00:00 2001 From: Henrique Alves Date: Thu, 11 Aug 2022 23:03:46 -0300 Subject: Add package creation via existing addon --- src/main.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 8584779..cb399d9 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,11 +58,13 @@ enum Commands { package_name: String, }, - // TODO: Add "push" flag to automate applying changes, commiting them and pushing /// Apply changes to a package Apply { /// Name of the package to apply changes to package_name: String, + /// Create new package from the specified addon folder (will create a git repo) + #[clap(short, long, required = false, default_value = "")] + create_from_addon: String, } } @@ -111,11 +113,11 @@ fn main() { commands::remove_package(&root, &package_name, cli.verbose); }, - Commands::Apply {package_name} => { + Commands::Apply {package_name, create_from_addon} => { let root = commands::search_project_root(); commands::check_ignores(&root); commands::initialize_glam_files(&root); - commands::apply_changes(&root, &package_name, cli.verbose); + commands::apply_changes(&root, &package_name, &create_from_addon, cli.verbose); }, } } -- cgit v1.2.3