Browse Source

chore(cli): remove duplicate stopping app messages

Nicolas Meienberger 1 year ago
parent
commit
d032bbdc5f
1 changed files with 0 additions and 3 deletions
  1. 0 3
      packages/cli/src/executors/system/system.executors.ts

+ 0 - 3
packages/cli/src/executors/system/system.executors.ts

@@ -141,10 +141,7 @@ export class SystemExecutors {
 
         // eslint-disable-next-line no-restricted-syntax
         for (const app of apps) {
-          spinner.setMessage(`Stopping ${app}...`);
-          spinner.start();
           await appExecutor.stopApp(app, {}, true);
-          spinner.done(`${app} stopped`);
         }
       }