From bf2b51949c4d7bb7ce422cbf5be0c5a7e50a1a90 Mon Sep 17 00:00:00 2001 From: Eduardo Robles Elvira Date: Wed, 1 Sep 2021 10:24:43 +0200 Subject: [PATCH] fix config version checking --- Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gruntfile.js b/Gruntfile.js index e5e1558c..a297a7e4 100755 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -63,7 +63,7 @@ module.exports = function (grunt) { grunt.log.error('No avConfig.js file found'); done(false); } else { - var match = data.toString().match(/AV_CONFIG_VERSION = [\'\"]([\w\.]*)[\'\"];/); + var match = data.toString().match(/AV_CONFIG_VERSION = [\'\"](.*)[\'\"];/); if (!match) { grunt.log.error('Invalid avConfig.js version'); } else {