summaryrefslogtreecommitdiffstats
path: root/bin/core/imag-store/src/update.rs
diff options
context:
space:
mode:
Diffstat (limited to 'bin/core/imag-store/src/update.rs')
-rw-r--r--bin/core/imag-store/src/update.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/core/imag-store/src/update.rs b/bin/core/imag-store/src/update.rs
index cad2fd57..c2687973 100644
--- a/bin/core/imag-store/src/update.rs
+++ b/bin/core/imag-store/src/update.rs
@@ -31,8 +31,7 @@ pub fn update(rt: &Runtime) {
let scmd = rt.cli().subcommand_matches("update").unwrap();
let id = scmd.value_of("id").unwrap(); // Safe by clap
let path = PathBuf::from(id);
- let store = Some(rt.store().path().clone());
- let path = StoreId::new(store, path).map_err_trace_exit_unwrap();
+ let path = StoreId::new(path).map_err_trace_exit_unwrap();
let _ = rt.store()
.retrieve(path)