We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69d4f74 commit 4daea57Copy full SHA for 4daea57
src/credhelper/mod.rs
@@ -29,8 +29,8 @@ pub fn spawn(helper: &str, operation: &str) -> Result<Child> {
29
.ok_or_else(|| InvalidHelper.into())
30
.and_then(|split| {
31
let cmd = Command::new(&split[0])
32
- .arg(operation)
33
.args(&split[1..])
+ .arg(operation)
34
.stdin(Stdio::piped())
35
.stdout(Stdio::piped())
36
.spawn()
0 commit comments