From 634e4daf90977937bd4312507c0cd0ddc4e3edfd Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Fri, 23 Apr 2021 21:19:30 -0400 Subject: [PATCH] That was a terrible idea --- commands/util-public/cloc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util-public/cloc.js b/commands/util-public/cloc.js index adab73dc..5df222ee 100644 --- a/commands/util-public/cloc.js +++ b/commands/util-public/cloc.js @@ -37,7 +37,7 @@ module.exports = class ClocCommand extends Command { if (this.cache) return this.cache; const { stdout, stderr } = await exec( path.join(__dirname, '..', '..', 'node_modules', '.bin', 'cloc'), - ['--json', '--exclude-dir=node_modules', '--unicode', path.join(__dirname, '..', '..')] + ['--json', '--exclude-dir=node_modules', path.join(__dirname, '..', '..')] ); if (stderr) throw new Error(stderr.trim()); this.cache = JSON.parse(stdout.trim());