mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-01-02 18:39:05 +01:00
update version regex
This commit is contained in:
parent
43829dfc85
commit
9f53524971
@ -190,7 +190,9 @@ function runWaveSrv(): Promise<boolean> {
|
|||||||
});
|
});
|
||||||
rlStderr.on("line", (line) => {
|
rlStderr.on("line", (line) => {
|
||||||
if (line.includes("WAVESRV-ESTART")) {
|
if (line.includes("WAVESRV-ESTART")) {
|
||||||
const startParams = /ws:([a-z0-9.:]+) web:([a-z0-9.:]+) version:([a-z0-9.]+) buildtime:(\d+)/gm.exec(line);
|
const startParams = /ws:([a-z0-9.:]+) web:([a-z0-9.:]+) version:([a-z0-9.\-]+) buildtime:(\d+)/gm.exec(
|
||||||
|
line
|
||||||
|
);
|
||||||
if (startParams == null) {
|
if (startParams == null) {
|
||||||
console.log("error parsing WAVESRV-ESTART line", line);
|
console.log("error parsing WAVESRV-ESTART line", line);
|
||||||
electronApp.quit();
|
electronApp.quit();
|
||||||
|
Loading…
Reference in New Issue
Block a user