aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command/outdated_command.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/command/outdated_command.rs')
-rw-r--r--crates/shirabe/src/command/outdated_command.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/command/outdated_command.rs b/crates/shirabe/src/command/outdated_command.rs
index 6511b2b..8eb67e6 100644
--- a/crates/shirabe/src/command/outdated_command.rs
+++ b/crates/shirabe/src/command/outdated_command.rs
@@ -180,9 +180,9 @@ impl OutdatedCommand {
let input = ArrayInput::new(args, None);
- // TODO(phase-b): convert ArrayInput/output references to dyn trait objects expected by Application::run
- let _ = input;
- self.get_application()?.run(None, None)
+ let input: std::rc::Rc<std::cell::RefCell<dyn InputInterface>> =
+ std::rc::Rc::new(std::cell::RefCell::new(input));
+ self.get_application()?.run(Some(input), Some(output))
}
pub fn is_proxy_command(&self) -> bool {