From fd8e0bd70b0d0a6f1dbd1603f4a47946671cb1d8 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Fri, 15 May 2026 08:23:44 -0500 Subject: [PATCH] monitor flag on flash now respects port --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index de7b060f2..ef327f2de 100644 --- a/main.go +++ b/main.go @@ -588,7 +588,7 @@ func Flash(pkgName, port, outpath string, options *compileopts.Options) error { return fmt.Errorf("unknown flash method: %s", flashMethod) } if options.Monitor { - return Monitor(result.Executable, "", config) + return Monitor(result.Executable, port, config) } return nil }