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 ea1a30f commit f3f9ee3Copy full SHA for f3f9ee3
collector/src/compile/execute/rustc.rs
@@ -193,9 +193,9 @@ fn checkout(artifact: &ArtifactId) -> anyhow::Result<()> {
193
.current_dir("rust")
194
.arg("fetch")
195
.arg("origin")
196
- .arg("master")
+ .arg("HEAD")
197
.status()
198
- .context("git fetch origin master")?;
+ .context("git fetch origin HEAD")?;
199
assert!(status.success(), "git fetch successful");
200
} else {
201
let status = Command::new("git")
0 commit comments