Rollup merge of #61762 - Keruspe:rustbuild-libtest-fix, r=Mark-Simulacrum

rustbuild: fix libtest_stamp

Looks like an obvious copy/paste typo
This commit is contained in:
Mazdak Farrokhzad
2019-06-13 01:49:33 +02:00
committed by GitHub
+1 -1
View File
@@ -787,7 +787,7 @@ pub fn cargo(
let libtest_stamp = match cmd {
"check" | "clippy" | "fix" => check::libtest_stamp(self, cmp, target),
_ => compile::libstd_stamp(self, cmp, target),
_ => compile::libtest_stamp(self, cmp, target),
};
let librustc_stamp = match cmd {