Skip to content

Commit c5b6cb2

Browse files
authored
Fix match pattern in tunnel condition
Signed-off-by: snek <[email protected]>
1 parent b75eaa9 commit c5b6cb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ async fn resolve_flags_and_init(
697697
}
698698

699699
// Tunnel sets up env vars and OTEL, so connect before everything else.
700-
if flags.tunnel && !matches!(flags.subcommand, DenoSubcommand::Deploy { .. })
700+
if flags.tunnel && !matches!(flags.subcommand, DenoSubcommand::Deploy)
701701
{
702702
if let Err(err) = initialize_tunnel(&flags).await {
703703
exit_for_error(err.context("Failed to start with tunnel"));

0 commit comments

Comments
 (0)