summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/main.rs b/src/main.rs
index f4d1813..2898f09 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -27,7 +27,7 @@ enum Commands {
/// Install all addons on glam file
Install {},
-
+
/// Apply changes to a repository
Apply {},
}
@@ -54,15 +54,15 @@ fn main() {
if commands::check_initialization(&root) {
commands::update_repository(&root, cli.verbose);
}
- }
-
+ }
+
Commands::Install {} => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {
commands::install_repositories(&root, cli.verbose);
}
- }
-
+ }
+
Commands::Apply {} => {
let root = commands::search_project_root();
if commands::check_initialization(&root) {