From 4b3a3db956ef3440b426c09a84193aa1373da03c Mon Sep 17 00:00:00 2001 From: Arik Rahman <40479733+ArikRahman@users.noreply.github.com> Date: Thu, 19 Feb 2026 19:44:45 -0600 Subject: [PATCH] Fix regex pattern for flutter matching in build.clj REPL was not working, it was not displaying the port number because of this malformed regex. --- clj/src/cljd/build.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clj/src/cljd/build.clj b/clj/src/cljd/build.clj index 16ed839d..e0f9b52f 100644 --- a/clj/src/cljd/build.clj +++ b/clj/src/cljd/build.clj @@ -435,7 +435,7 @@ ; - flush (end of line is not part of the ouput and the output must be flushed) ; - multiline (end of line is not part of the ouput and the output should not ; be flushed) - (re-matches #".*?flutter.*?: \[([^ )]+) ([^)]*)\)(?:([>/ ])(.*))?_" line)] + (re-matches #".*?(?:flutter.*?: )?\[([^ )]+) ([^)]*)\)(?:([>/ ])(.*))?_" line)] {:repltag repltag :mode mode :cont (or cont " ") :text (or text "")})) (defn compile-cli