diff --git a/util.js b/util.js index 64ae7be..eb37bc9 100644 --- a/util.js +++ b/util.js @@ -2,7 +2,6 @@ import { exec } from 'child_process'; import { existsSync } from 'fs'; export function asyncExec(command) { - console.log(command); return new Promise((resolve, reject) => { const child = exec(command); child.addListener('error', (err) => reject(err));