(&mut self)
| 43 | |
| 44 | impl Drop for GlobalSettingCleanup { |
| 45 | fn drop(&mut self) { |
| 46 | let _ = std::process::Command::new(openshell_bin()) |
| 47 | .args([ |
| 48 | "settings", |
| 49 | "delete", |
| 50 | "--global", |
| 51 | "--key", |
| 52 | self.key, |
| 53 | "--yes", |
| 54 | ]) |
| 55 | .stdout(Stdio::null()) |
| 56 | .stderr(Stdio::null()) |
| 57 | .status(); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | async fn run_cli(args: &[&str]) -> CliResult { |
nothing calls this directly
no test coverage detected