From 6132bca49e2ae269fb871149770a13b162ffa8a8 Mon Sep 17 00:00:00 2001 From: Florent Biville Date: Fri, 14 Jan 2022 18:19:44 +0100 Subject: [PATCH] fix: incorrect start command log format --- dist/index.js | 6 +----- index.js | 6 +----- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/dist/index.js b/dist/index.js index b270999b4..1d4801743 100644 --- a/dist/index.js +++ b/dist/index.js @@ -78818,11 +78818,7 @@ const startServersMaybe = () => { ) return separateStartCommands.map((startCommand) => { - return execCommand( - startCommand, - false, - `start server "${startCommand}` - ) + return execCommand(startCommand, false, `start server`) }) } diff --git a/index.js b/index.js index 4606137c7..bc08850b4 100644 --- a/index.js +++ b/index.js @@ -372,11 +372,7 @@ const startServersMaybe = () => { ) return separateStartCommands.map((startCommand) => { - return execCommand( - startCommand, - false, - `start server "${startCommand}` - ) + return execCommand(startCommand, false, `start server`) }) }