diff options
Diffstat (limited to 'crates/shirabe/src/command/self_update_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/self_update_command.rs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/shirabe/src/command/self_update_command.rs b/crates/shirabe/src/command/self_update_command.rs index 80d8b01..fc22ab7 100644 --- a/crates/shirabe/src/command/self_update_command.rs +++ b/crates/shirabe/src/command/self_update_command.rs @@ -28,6 +28,7 @@ use crate::console::input::InputOption; use crate::downloader::FilesystemException; use crate::factory::Factory; use crate::io::IOInterface; +use crate::io::IOInterfaceImmutable; use crate::self_update::Keys; use crate::self_update::Versions; use crate::util::Filesystem; @@ -132,7 +133,7 @@ impl SelfUpdateCommand { let io = self.get_io(); let http_downloader = std::rc::Rc::new(std::cell::RefCell::new( - Factory::create_http_downloader(io, &config, indexmap::IndexMap::new())?, + Factory::create_http_downloader(io.clone(), &config, indexmap::IndexMap::new())?, )); let mut versions_util = Versions::new(config.clone(), http_downloader.clone()); @@ -142,7 +143,7 @@ impl SelfUpdateCommand { for channel in Versions::CHANNELS { if input.get_option(channel).as_bool().unwrap_or(false) { requested_channel = Some(channel.to_string()); - versions_util.set_channel(channel.to_string(), Some(io))??; + versions_util.set_channel(channel.to_string(), Some(&*io.borrow()))??; break; } } |
