Skip to content

Commit 0a286f3

Browse files
committed
update
1 parent 6861615 commit 0a286f3

File tree

1 file changed

+3
-2
lines changed
  • library/compiler-builtins/crates/josh-sync/src

1 file changed

+3
-2
lines changed

library/compiler-builtins/crates/josh-sync/src/sync.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,10 @@ impl GitSync {
179179

180180
if Command::new("git")
181181
.args(["-C", &rustc_git, "fetch", &user_rust_url])
182-
.output()
182+
// .output()
183+
.status()
183184
.expect("could not run fetch")
184-
.status
185+
// .status
185186
.success()
186187
{
187188
panic!(

0 commit comments

Comments
 (0)