diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-12 11:04:26 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-12-12 12:28:22 -0800 |
| commit | 6cb8bbc3ffaa3c8215337ef9c0dd6fa2992e6ef1 (patch) | |
| tree | c00d5d20c1b67540a3a1c3ffd08478918a56aca1 /src/bootstrap/channel.rs | |
| parent | 5f07d3dea9717230d9c9742a3e7b9c4687c95d2e (diff) | |
| download | rust-6cb8bbc3ffaa3c8215337ef9c0dd6fa2992e6ef1.tar.gz rust-6cb8bbc3ffaa3c8215337ef9c0dd6fa2992e6ef1.zip | |
rustbuild: Fix dist of save-analysis info
We don't need an extra bare tarball, the save-analysis info is already produced with a version/target in the filename.
Diffstat (limited to 'src/bootstrap/channel.rs')
| -rw-r--r-- | src/bootstrap/channel.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/channel.rs b/src/bootstrap/channel.rs index 5b14b9bda6f..c38bb33aa02 100644 --- a/src/bootstrap/channel.rs +++ b/src/bootstrap/channel.rs @@ -15,7 +15,7 @@ //! `package_vers`, and otherwise indicating to the compiler what it should //! print out as part of its version information. -use std::fs::{self, File}; +use std::fs::File; use std::io::prelude::*; use std::process::Command; |
