diff options
Diffstat (limited to 'lib/compilers/ppci.js')
-rw-r--r-- | lib/compilers/ppci.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ppci.js b/lib/compilers/ppci.js index cb91d4220..0ad446071 100644 --- a/lib/compilers/ppci.js +++ b/lib/compilers/ppci.js @@ -26,7 +26,7 @@ const BaseCompiler = require('../base-compiler'), exec = require('../exec'), logger = require('../logger').logger; -const blacklist = [ +const forbiddenOptions = [ '--report', '--text-report', '--html-report' @@ -37,7 +37,7 @@ class PPCICompiler extends BaseCompiler { return args.filter((item) => { if (typeof item !== "string") return true; - return !blacklist.includes(item.toLowerCase()); + return !forbiddenOptions.includes(item.toLowerCase()); }); } |