Skip to content

Commit

Permalink
fix: incorrect start command log format
Browse files Browse the repository at this point in the history
  • Loading branch information
fbiville authored and MikeMcC399 committed Feb 10, 2023
1 parent 659e120 commit 6132bca
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 6132bca

Please sign in to comment.