Skip to content

Commit

Permalink
Merge pull request #785 from MikeMcC399/fix/start_command_log
Browse files Browse the repository at this point in the history
Correct log format for start: parameter
  • Loading branch information
jaffrepaul committed Feb 13, 2023
2 parents 153a14e + 6132bca commit 327178c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -78818,11 +78818,7 @@ const startServersMaybe = () => {
)

return separateStartCommands.map((startCommand) => {
return execCommand(
startCommand,
false,
`start server "${startCommand}`
)
return execCommand(startCommand, false, `start server`)
})
}

Expand Down
6 changes: 1 addition & 5 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -372,11 +372,7 @@ const startServersMaybe = () => {
)

return separateStartCommands.map((startCommand) => {
return execCommand(
startCommand,
false,
`start server "${startCommand}`
)
return execCommand(startCommand, false, `start server`)
})
}

Expand Down

0 comments on commit 327178c

Please sign in to comment.