Skip to content

Commit

Permalink
Auto merge of #56703 - alexcrichton:fix-tools, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Fix build of the `build-manifest` tool

Accidentally broken in #56258!
  • Loading branch information
bors committed Dec 11, 2018
2 parents 4c0116e + ddd8b41 commit 3a31213
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/ci/docker/mingw-check/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh

ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
ENV SCRIPT python2.7 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu
ENV SCRIPT python2.7 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \
python2.7 ../x.py build --stage 0 src/tools/build-manifest
2 changes: 1 addition & 1 deletion src/tools/build-manifest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 3a31213

Please sign in to comment.