From a0c44a82708d92f2dbacc4a40ba59b559d7917b3 Mon Sep 17 00:00:00 2001 From: baked Date: Thu, 2 Feb 2023 03:11:30 +0100 Subject: [PATCH] clean create output (#66) --- packages/create-turbo-module/src/exec.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/create-turbo-module/src/exec.ts b/packages/create-turbo-module/src/exec.ts index 75b88f2..56fda6f 100644 --- a/packages/create-turbo-module/src/exec.ts +++ b/packages/create-turbo-module/src/exec.ts @@ -123,7 +123,6 @@ export const bash = async ( for (const { strings, vars } of lines) { const command = await getCommand(strings, vars, results); if (command !== "") { - console.info(command); results.push(await exec(command)); } } @@ -149,7 +148,6 @@ bash.options = for (const { strings, vars } of lines) { const command = await getCommand(strings, vars, results); if (command !== "") { - console.info(command); results.push(await exec(command, options)); } }