Skip to content

Commit 2780881

Browse files
ongchidjc
authored andcommitted
Remove redundant message if an error occurs during package extraction
1 parent af6726d commit 2780881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dist/component/package.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ impl<'a> TarPackage<'a> {
151151
// $pkgname-$version-$target. Skip that directory when
152152
// unpacking.
153153
unpack_without_first_dir(&mut archive, &temp_dir, notify_handler)
154-
.context("failed to extract package (perhaps you ran out of disk space?)")?;
154+
.context("failed to extract package")?;
155155

156156
Ok(TarPackage(
157157
DirectoryPackage::new(temp_dir.to_owned(), false)?,

0 commit comments

Comments
 (0)