From 894e16f222c02ebad4460fce4247fa1f5e67c14b Mon Sep 17 00:00:00 2001 From: Rutger Broekhoff Date: Wed, 24 Jan 2024 16:29:41 +0100 Subject: Fix running git commands --- rs/shell/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rs/shell/src/main.rs b/rs/shell/src/main.rs index 02da053..b9c50d8 100644 --- a/rs/shell/src/main.rs +++ b/rs/shell/src/main.rs @@ -116,7 +116,7 @@ fn main() -> ExitCode { let mut args = Vec::new(); - let git_cmds = ["receive-pack", "upload-archive", "upload-pack"]; + let git_cmds = ["git-receive-pack", "git-upload-archive", "git-upload-pack"]; if git_cmds.contains(&program.as_str()) { if cmd.len() != 1 { eprintln!("Bad command"); -- cgit v1.2.3