Skip to content

Commit

Permalink
fix: 馃悰 remove TMP folder
Browse files Browse the repository at this point in the history
  • Loading branch information
mjancarik committed May 25, 2022
1 parent 7774ff3 commit c47cdb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/index.mjs
Expand Up @@ -68,7 +68,7 @@ program.parse(process.argv);

const result = await createResult({ TMP });

//await fs.remove(TMP);
await fs.remove(TMP);

await (!options.json && renderSizeTable({ result, packages }));
await (!options.json && renderTimeTable({ result }));
Expand All @@ -78,6 +78,6 @@ program.parse(process.argv);
}
} catch (error) {
console.error(error);
//await fs.remove(TMP);
await fs.remove(TMP);
}
})(program.args, program.opts());

0 comments on commit c47cdb5

Please sign in to comment.