Skip to content

Commit 327178c

Browse files
authored
Merge pull request #785 from MikeMcC399/fix/start_command_log
Correct log format for start: parameter
2 parents 153a14e + 6132bca commit 327178c

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

dist/index.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -78818,11 +78818,7 @@ const startServersMaybe = () => {
7881878818
)
7881978819

7882078820
return separateStartCommands.map((startCommand) => {
78821-
return execCommand(
78822-
startCommand,
78823-
false,
78824-
`start server "${startCommand}`
78825-
)
78821+
return execCommand(startCommand, false, `start server`)
7882678822
})
7882778823
}
7882878824

index.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -372,11 +372,7 @@ const startServersMaybe = () => {
372372
)
373373

374374
return separateStartCommands.map((startCommand) => {
375-
return execCommand(
376-
startCommand,
377-
false,
378-
`start server "${startCommand}`
379-
)
375+
return execCommand(startCommand, false, `start server`)
380376
})
381377
}
382378

0 commit comments

Comments
 (0)