diff options
author | Partouf <partouf@gmail.com> | 2018-10-26 13:56:56 +0200 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2018-10-26 13:56:56 +0200 |
commit | 06c0b19eed957b853684e2af13b3d44d79a94e3c (patch) | |
tree | bed26190d41c53a7074874603b357c01dac62f33 /lib/compilers/argument-parsers.js | |
parent | 466b3341673a983d0d1db489b6aa3f0239be7764 (diff) | |
download | compiler-explorer-06c0b19eed957b853684e2af13b3d44d79a94e3c.tar.gz compiler-explorer-06c0b19eed957b853684e2af13b3d44d79a94e3c.zip |
[,]
Diffstat (limited to 'lib/compilers/argument-parsers.js')
-rw-r--r-- | lib/compilers/argument-parsers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/argument-parsers.js b/lib/compilers/argument-parsers.js index 72b2cc9a3..461b37274 100644 --- a/lib/compilers/argument-parsers.js +++ b/lib/compilers/argument-parsers.js @@ -31,7 +31,7 @@ class BaseParser { return compiler.exec(compiler.compiler.exe, [helpArg]).then(result => { const options = {}; if (result.code === 0) { - const optionFinder = /^\s*(--?[-a-zA-Z0-9<>=]+)\s*(.*)/; + const optionFinder = /^\s*(--?[-a-zA-Z0-9<>=,[\]]+)\s*(.*)/; let previousOption = false; utils.eachLine(result.stdout + result.stderr, line => { |