Skip to content

Commit ce2d69d

Browse files
committed
nonzero exit code if some crates didn't install
1 parent 1c7c88a commit ce2d69d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

src/cargo/ops/cargo_install.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ pub fn install(root: Option<&str>,
6363
let root = resolve_root(root, opts.config)?;
6464
let map = SourceConfigMap::new(opts.config)?;
6565

66-
let installed_anything = if krates.len() <= 1 {
66+
let (installed_anything, scheduled_error) = if krates.len() <= 1 {
6767
install_one(root.clone(), map, krates.into_iter().next(), source_id, vers, opts,
6868
force, true)?;
69-
true
69+
(true, false)
7070
} else {
7171
let mut succeeded = vec![];
7272
let mut failed = vec![];
@@ -95,7 +95,7 @@ pub fn install(root: Option<&str>,
9595
opts.config.shell().status("\nSummary:", summary.join(" "))?;
9696
}
9797

98-
!succeeded.is_empty()
98+
(!succeeded.is_empty(), !failed.is_empty())
9999
};
100100

101101
if installed_anything {
@@ -114,6 +114,10 @@ pub fn install(root: Option<&str>,
114114
dst.display()))?;
115115
}
116116

117+
if scheduled_error {
118+
bail!("some crates failed to install");
119+
}
120+
117121
Ok(())
118122
}
119123

tests/install.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ fn multiple_pkgs() {
6060
pkg("bar", "0.0.2");
6161

6262
assert_that(cargo_process("install").args(&["foo", "bar", "baz"]),
63-
execs().with_status(0).with_stderr(&format!("\
63+
execs().with_status(101).with_stderr(&format!("\
6464
[UPDATING] registry `[..]`
6565
[DOWNLOADING] foo v0.0.1 (registry file://[..])
6666
[INSTALLING] foo v0.0.1
@@ -76,6 +76,7 @@ error: could not find `baz` in `registry [..]`
7676
7777
Summary: Successfully installed foo, bar! Failed to install baz (see error(s) above).
7878
warning: be sure to add `[..]` to your PATH to be able to run the installed binaries
79+
error: some crates failed to install
7980
",
8081
home = cargo_home().display())));
8182
assert_that(cargo_home(), has_installed_exe("foo"));

0 commit comments

Comments
 (0)