diff --git a/src/main.rs b/src/main.rs index 670c2aedfb69803f00448c4c2dac5413c65e89f1..c7b9a6e65bb51d74a0515e37a64ef5e45b01b85d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ use configt::PartialPrune; mod checkout; mod commit; mod compact; -mod compress; +mod push; mod config_structure; mod configt; mod create_hooks; @@ -385,7 +385,7 @@ fn main() { Remote::Rm(e) => remote::remove_config(&e.key, e.global), }, Commands::Push(p) => { - compress::push(&p.key); + push::push(&p.key); } } } diff --git a/src/compress.rs b/src/push.rs similarity index 100% rename from src/compress.rs rename to src/push.rs