From 356fca4fbe66e1088bbf3a5476a545c84095c834 Mon Sep 17 00:00:00 2001 From: James M Snell Date: Mon, 17 Apr 2017 15:08:54 -0700 Subject: [PATCH] Revert "benchmark: fix CLI arguments check in common.js" This reverts commit e34f8e1444d1e52f4501ccc289cdb83da93e48f0. --- benchmark/common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/common.js b/benchmark/common.js index d41d46fd7612d4..77ebe0bd1dc37f 100644 --- a/benchmark/common.js +++ b/benchmark/common.js @@ -42,8 +42,8 @@ Benchmark.prototype._parseArgs = function(argv, configs) { const extraOptions = {}; // Parse configuration arguments for (const arg of argv) { - const match = arg.match(/^(.+?)=([\s\S]+)$/); - if (!match) { + const match = arg.match(/^(.+?)=([\s\S]*)$/); + if (!match || !match[1]) { console.error('bad argument: ' + arg); process.exit(1); }