about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-12-10 19:34:47 -0800
committerAlex Crichton <alex@alexcrichton.com>2018-12-10 19:34:47 -0800
commit98a38673ec5188e04da964ee3d9544f102803444 (patch)
treefbb181eca94a77e3d906130f77a2ed915e6c8410 /src
parentda1527cb06c7245f83ca51903ea2a27631820215 (diff)
downloadrust-98a38673ec5188e04da964ee3d9544f102803444.tar.gz
rust-98a38673ec5188e04da964ee3d9544f102803444.zip
Fix build of the `build-manifest` tool
Accidentally broken in #56258!
Diffstat (limited to 'src')
-rw-r--r--src/tools/build-manifest/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/build-manifest/src/main.rs b/src/tools/build-manifest/src/main.rs
index d9834f9f0a0..896b380f85c 100644
--- a/src/tools/build-manifest/src/main.rs
+++ b/src/tools/build-manifest/src/main.rs
@@ -14,7 +14,7 @@ extern crate serde_derive;
 
 use std::collections::BTreeMap;
 use std::env;
-use std::fs::File;
+use std::fs;
 use std::io::{self, Read, Write};
 use std::path::{PathBuf, Path};
 use std::process::{Command, Stdio};