Skip to content

Commit 224378c

Browse files
committed
more correct error msg
1 parent 2cf7c29 commit 224378c

File tree

1 file changed

+2
-1
lines changed
  • src/tools/build-manifest/src

1 file changed

+2
-1
lines changed

src/tools/build-manifest/src/main.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,8 @@ impl Builder {
384384
File::open(self.input.join("toolstates-linux.json")).ok()
385385
.and_then(|f| serde_json::from_reader(&f).ok());
386386
let toolstates = toolstates.unwrap_or_else(|| {
387-
println!("WARNING: `toolstates-linux.json` missing; assuming all tools failed");
387+
println!("WARNING: `toolstates-linux.json` missing/malformed; \
388+
assuming all tools failed");
388389
HashMap::default() // Use empty map if anything went wrong.
389390
});
390391
// Mark some tools as missing based on toolstate.

0 commit comments

Comments
 (0)