Skip to content

Commit f00c223

Browse files
committed
Use a few more chain_error calls
1 parent ea2df45 commit f00c223

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

src/cargo/core/workspace.rs

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ use glob::glob;
88
use core::{Package, VirtualManifest, EitherManifest, SourceId};
99
use core::{PackageIdSpec, Dependency, Profile, Profiles};
1010
use ops;
11-
use util::{Config, CargoResult, Filesystem, human};
11+
use util::{Config, CargoResult, Filesystem, human, ChainError};
1212
use util::paths;
1313

1414
/// The core abstraction in Cargo for working with a workspace of crates.
@@ -549,12 +549,12 @@ fn expand_member_path(path: &Path) -> CargoResult<Vec<PathBuf>> {
549549
Some(p) => p,
550550
None => return Ok(Vec::new()),
551551
};
552-
let res = glob(path).map_err(|e| {
553-
human(format!("could not parse pattern `{}`: {}", &path, e))
552+
let res = glob(path).chain_error(|| {
553+
human(format!("could not parse pattern `{}`", &path))
554554
})?;
555555
res.map(|p| {
556-
p.or_else(|e| {
557-
Err(human(format!("unable to match path to pattern `{}`: {}", &path, e)))
556+
p.chain_error(|| {
557+
human(format!("unable to match path to pattern `{}`", &path))
558558
})
559559
}).collect()
560560
}

src/cargo/util/errors.rs

+5
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ use core::TargetKind;
1111

1212
use curl;
1313
use git2;
14+
use glob;
1415
use semver;
1516
use serde_json;
1617
use term;
@@ -370,6 +371,8 @@ from_error! {
370371
term::Error,
371372
num::ParseIntError,
372373
str::ParseBoolError,
374+
glob::PatternError,
375+
glob::GlobError,
373376
}
374377

375378
impl From<string::ParseError> for Box<CargoError> {
@@ -401,6 +404,8 @@ impl CargoError for ffi::NulError {}
401404
impl CargoError for term::Error {}
402405
impl CargoError for num::ParseIntError {}
403406
impl CargoError for str::ParseBoolError {}
407+
impl CargoError for glob::PatternError {}
408+
impl CargoError for glob::GlobError {}
404409

405410
// =============================================================================
406411
// Construction helpers

0 commit comments

Comments
 (0)