Skip to content

Commit 11f6576

Browse files
committed
fix error message
1 parent 34e25ec commit 11f6576

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "xcompress"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
authors = ["Magic Len <len@magiclen.org>"]
55
repository = "https://github.com/magiclen/xcompress"
66
homepage = "https://magiclen.org/xcompress"

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,7 @@ impl Config {
438438
path
439439
}
440440
Err(_) => {
441-
return Err(String::from("FFMPEG_PATH is incorrect."));
441+
return Err(format!("{} is incorrect.", name));
442442
}
443443
};
444444

0 commit comments

Comments
 (0)