From 3b868210197b8eaeb855146c53d9e8a803859884 Mon Sep 17 00:00:00 2001 From: "Ben Scholzen (DASPRiD)" Date: Tue, 5 Mar 2024 13:20:10 +0100 Subject: [PATCH] fix(cli): remove notice about manual pipeline run --- src/cli.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/cli.ts b/src/cli.ts index ddf08b9..1083c81 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -326,10 +326,7 @@ const tasks = new Listr( try { await tasks.run(); - logger.log( - ListrLogLevels.COMPLETED, - "Project creation successful, you must run the pipeline manually once.", - ); + logger.log(ListrLogLevels.COMPLETED, "Project creation successful."); logger.log(ListrLogLevels.COMPLETED, "You can find additional code snippets here:"); logger.log(ListrLogLevels.COMPLETED, "https://github.com/soliantconsulting/koa-api-recipes"); } catch (error) {