Skip to content

Commit 4daea57

Browse files
committed
stuff
1 parent 69d4f74 commit 4daea57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/credhelper/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ pub fn spawn(helper: &str, operation: &str) -> Result<Child> {
2929
.ok_or_else(|| InvalidHelper.into())
3030
.and_then(|split| {
3131
let cmd = Command::new(&split[0])
32-
.arg(operation)
3332
.args(&split[1..])
33+
.arg(operation)
3434
.stdin(Stdio::piped())
3535
.stdout(Stdio::piped())
3636
.spawn()

0 commit comments

Comments
 (0)