Skip to content

Commit 85b58e3

Browse files
committed
Auto merge of #1160 - alexcrichton:update, r=alexcrichton
2 parents ac6da63 + 5532111 commit 85b58e3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+600
-585
lines changed

Cargo.lock

Lines changed: 61 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bin/bench.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use cargo::util::important_paths::{find_root_manifest_for_cwd};
99
struct Options {
1010
flag_no_run: bool,
1111
flag_package: Option<String>,
12-
flag_jobs: Option<uint>,
12+
flag_jobs: Option<u32>,
1313
flag_features: Vec<String>,
1414
flag_bench: Option<String>,
1515
flag_no_default_features: bool,
@@ -76,7 +76,7 @@ pub fn execute(options: Options, shell: &mut MultiShell) -> CliResult<Option<()>
7676
None => Ok(None),
7777
Some(err) => {
7878
Err(match err.exit {
79-
Some(ExitStatus(i)) => CliError::new("", i as uint),
79+
Some(ExitStatus(i)) => CliError::new("", i as u32),
8080
_ => CliError::from_boxed(box Human(err), 101)
8181
})
8282
}

src/bin/build.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use cargo::util::{CliResult, CliError};
99
#[derive(RustcDecodable)]
1010
struct Options {
1111
flag_package: Option<String>,
12-
flag_jobs: Option<uint>,
12+
flag_jobs: Option<u32>,
1313
flag_features: Vec<String>,
1414
flag_no_default_features: bool,
1515
flag_target: Option<String>,
@@ -44,7 +44,7 @@ current package is built. For more information on SPEC and its format, see the
4444
";
4545

4646
pub fn execute(options: Options, shell: &mut MultiShell) -> CliResult<Option<()>> {
47-
debug!("executing; cmd=cargo-build; args={}", os::args());
47+
debug!("executing; cmd=cargo-build; args={:?}", os::args());
4848
shell.set_verbose(options.flag_verbose);
4949

5050
let root = try!(find_root_manifest_for_cwd(options.flag_manifest_path));

0 commit comments

Comments
 (0)