summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 6f8c1d9..50f5127 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -78,6 +78,18 @@ fn run_command(user_input: String) -> Result<ControlFlow<(), ()>, ShackleError>
command.spawn()?.wait()?;
}
+ Ok(ShackleCommand::GitReceivePack(receive_pack_args)) => {
+ let mut command = Command::new("git-receive-pack");
+
+ if receive_pack_args.http_backend_info_refs {
+ command.arg("--http-backend-info-refs");
+ }
+
+ // TODO: This should definitely be part of the arg parsing!
+ command.arg(&receive_pack_args.directory.trim_matches('\''));
+
+ command.spawn()?.wait()?;
+ }
}
Ok(ControlFlow::Continue(()))
}