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 5a0d93e commit f291437Copy full SHA for f291437
gix-transport/src/client/blocking_io/file.rs
@@ -216,7 +216,7 @@ impl client::Transport for SpawnProcessOnDemand {
216
};
217
cmd.stdin = Stdio::piped();
218
cmd.stdout = Stdio::piped();
219
- if self.path.first() == Some(&b'-') {
+ if self.path.trim().first() == Some(&b'-') {
220
return Err(client::Error::AmbiguousPath {
221
path: self.path.clone(),
222
});
0 commit comments