summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-mv/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/core/imag-mv/src/main.rs')
-rw-r--r--bin/core/imag-mv/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/core/imag-mv/src/main.rs b/bin/core/imag-mv/src/main.rs
index ff267067..f5d4d341 100644
--- a/bin/core/imag-mv/src/main.rs
+++ b/bin/core/imag-mv/src/main.rs
@@ -72,7 +72,7 @@ fn main() {
.cli()
.value_of("source")
.map(PathBuf::from)
- .map(StoreId::new_baseless)
+ .map(StoreId::new)
.unwrap() // unwrap safe by clap
.map_err_trace_exit_unwrap();
@@ -80,7 +80,7 @@ fn main() {
.cli()
.value_of("dest")
.map(PathBuf::from)
- .map(StoreId::new_baseless)
+ .map(StoreId::new)
.unwrap() // unwrap safe by clap
.map_err_trace_exit_unwrap();