You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by db...@apache.org on 2015/05/29 04:40:29 UTC

cordova-medic git commit: Fixing error detection pattern to be case-insensitive.

Repository: cordova-medic
Updated Branches:
  refs/heads/master ff3ea7c08 -> fc7619ba8


Fixing error detection pattern to be case-insensitive.


Project: http://git-wip-us.apache.org/repos/asf/cordova-medic/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-medic/commit/fc7619ba
Tree: http://git-wip-us.apache.org/repos/asf/cordova-medic/tree/fc7619ba
Diff: http://git-wip-us.apache.org/repos/asf/cordova-medic/diff/fc7619ba

Branch: refs/heads/master
Commit: fc7619ba881f5d913813c805f6c6b2572ac63bc9
Parents: ff3ea7c
Author: Dmitry Blotsky <dm...@gmail.com>
Authored: Thu May 28 19:40:15 2015 -0700
Committer: Dmitry Blotsky <dm...@gmail.com>
Committed: Thu May 28 19:40:15 2015 -0700

----------------------------------------------------------------------
 medic/medic-run.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-medic/blob/fc7619ba/medic/medic-run.js
----------------------------------------------------------------------
diff --git a/medic/medic-run.js b/medic/medic-run.js
index 830f8ea..2ab1bbc 100644
--- a/medic/medic-run.js
+++ b/medic/medic-run.js
@@ -35,7 +35,7 @@ var testwait = require("../lib/testwait");
 // constants
 var CORDOVA_MEDIC_DIR       = "cordova-medic";
 var DEFAULT_APP_PATH        = "mobilespec";
-var CORDOVA_ERROR_PATTERN   = /^ERROR/im;
+var CORDOVA_ERROR_PATTERN   = /^ERROR/m;
 var DEFAULT_APP_ENTRY       = "index.html";
 var ANDROID_TIMEOUT         = 120000; // in milliseconds
 var MEDIC_BUILD_PREFIX      = "medic-cli-build";


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org