(
no_heal: bool,
no_reinstall: bool,
)
| 191 | } |
| 192 | |
| 193 | pub(crate) fn run_update_command( |
| 194 | no_heal: bool, |
| 195 | no_reinstall: bool, |
| 196 | ) -> tracedecay::errors::Result<()> { |
| 197 | run_install_then_refresh( |
| 198 | RefreshPolicy::Always, |
| 199 | tracedecay::upgrade::run_upgrade, |
| 200 | |binary| run_post_update_subcommand(no_heal, no_reinstall, binary), |
| 201 | ) |
| 202 | } |
| 203 | |
| 204 | pub(crate) fn run_upgrade_command( |
| 205 | no_heal: bool, |
no test coverage detected