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 7a1d8be commit 54d7091Copy full SHA for 54d7091
library/compiler-builtins/crates/josh-sync/src/sync.rs
@@ -291,7 +291,7 @@ impl GitSync {
291
eprintln!("+ {cmd:?}");
292
let out = cmd.output().expect("command failed");
293
assert!(out.status.success());
294
- String::from_utf8(out.stdout).expect("non-UTF8 output")
+ String::from_utf8(out.stdout.trim_ascii().to_vec()).expect("non-UTF8 output")
295
}
296
297
0 commit comments