From 129036c6fd5d50a91072c0208913bda1f952704d Mon Sep 17 00:00:00 2001 From: Vse Mozhet Byt Date: Sat, 15 Apr 2017 22:45:29 +0300 Subject: [PATCH] benchmark: fix CLI arguments check in common.js PR-URL: https://github.com/nodejs/node/pull/12429 Reviewed-By: Anna Henningsen Reviewed-By: Benjamin Gruenbaum Reviewed-By: Joyee Cheung Reviewed-By: James M Snell --- benchmark/common.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/benchmark/common.js b/benchmark/common.js index 77ebe0bd1dc37f..d41d46fd7612d4 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 || !match[1]) { + const match = arg.match(/^(.+?)=([\s\S]+)$/); + if (!match) { console.error('bad argument: ' + arg); process.exit(1); }