1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix regex

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2022-02-28 15:31:37 +02:00
parent 61cd3e4b5b
commit d964977587

View File

@ -11,7 +11,7 @@ import logger from "../logger";
import { getPortFrom } from "../utils/get-port";
import { makeObservable, observable, when } from "mobx";
const startingServeRegex = /^starting to serve on (?<address>.+)/i;
const startingServeRegex = /starting to serve on (?<address>.+)/i;
interface Dependencies {
proxyBinPath: string;