Skip to content

Commit 21e0716

Browse files
authored
cli: update proc macro and clippy (microsoft#210414)
1 parent 98785f5 commit 21e0716

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cli/Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/src/tunnels/service_macos.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ impl ServiceManager for LaunchdService {
8686
match capture_command_and_check_status("launchctl", &["stop", &get_service_label()]).await {
8787
Ok(_) => {}
8888
// status 3 == "no such process"
89-
Err(CodeError::CommandFailed { code, .. }) if code == 3 => {}
89+
Err(CodeError::CommandFailed { code: 3, .. }) => {}
9090
Err(e) => return Err(wrap(e, "error stopping service").into()),
9191
};
9292

0 commit comments

Comments
 (0)