Skip to content

Commit e6739c1

Browse files
committed
qa
Signed-off-by: Jan Zachmann <[email protected]>
1 parent 186c8b7 commit e6739c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ where
7777
let tmp_dir = PathBuf::from(format!("/tmp/{}", Uuid::new_v4()));
7878
fs::create_dir_all(tmp_dir.clone()).context(format!(
7979
"run_image_command: couldn't create destination path {}",
80-
tmp_dir.to_str().context("cannot tmp dir name")?
80+
tmp_dir.to_str().context("cannot get tmp dir name")?
8181
))?;
8282

8383
let _guard = TempDirGuard(tmp_dir.clone());
@@ -108,7 +108,7 @@ where
108108
if generate_bmap {
109109
let mut target_bmap = image_file
110110
.parent()
111-
.context("cannot get image path parent")?
111+
.context("cannot get parent dir of image path")?
112112
.to_path_buf();
113113
let tmp_bmap = PathBuf::from(format!(
114114
"{}.bmap",

0 commit comments

Comments
 (0)