Remove console.log

This commit is contained in:
pietervdvn 2022-02-14 19:20:58 +01:00
parent 08e2fa747f
commit 29b3c98cd2

View file

@ -10,7 +10,6 @@ export default class CodeQualitySpec extends T {
const excludedDirs = [".git", "node_modules", "dist", ".cache", ".parcel-cache", "assets"]
exec("grep \"constructor.name\" -r . " + excludedDirs.map(d => "--exclude-dir=" + d).join(" "), ((error, stdout, stderr) => {
console.log("Grep gave: ", stdout)
if (error?.message?.startsWith("Command failed: grep")) {
return;
}