remove unesseary log

This commit is contained in:
Joseph Garrone 2021-03-02 12:19:12 +01:00
parent 69f017df36
commit 6a93c6e894

View File

@ -14,8 +14,6 @@ export function downloadAndUnzip(
fs.mkdirSync(destDirPath, { "recursive": true });
console.log({ url, destDirPath });
[
`wget ${url}`,
...["unzip", "rm"].map(prg => `${prg} ${pathBasename(url)}`),