(
&'a self,
project_path: Option<&'a Path>,
)
| 63 | } |
| 64 | |
| 65 | fn post_install<'a>( |
| 66 | &'a self, |
| 67 | project_path: Option<&'a Path>, |
| 68 | ) -> Pin<Box<dyn Future<Output = ()> + 'a>> { |
| 69 | Box::pin(track_branch_after_install(project_path)) |
| 70 | } |
| 71 | |
| 72 | fn update_plugin(&self, ctx: &InstallContext) -> Result<UpdatePluginOutcome> { |
| 73 | // The whole plugin directory is a tracedecay-generated bundle (its |
no test coverage detected