You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by js...@apache.org on 2014/07/02 21:37:01 UTC

[2/4] git commit: CB-7045 (fix up quotes to make jshint happy)

CB-7045 (fix up quotes to make jshint happy)


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

Branch: refs/heads/master
Commit: fb3c8d63ff3714723c5525e9b3c6de1157bcb14f
Parents: 8c3885a
Author: Josh Soref <js...@blackberry.com>
Authored: Wed Jul 2 15:13:18 2014 -0400
Committer: Josh Soref <js...@blackberry.com>
Committed: Wed Jul 2 15:13:18 2014 -0400

----------------------------------------------------------------------
 cordova-lib/src/plugman/install.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/fb3c8d63/cordova-lib/src/plugman/install.js
----------------------------------------------------------------------
diff --git a/cordova-lib/src/plugman/install.js b/cordova-lib/src/plugman/install.js
index ed86855..6a8bea2 100644
--- a/cordova-lib/src/plugman/install.js
+++ b/cordova-lib/src/plugman/install.js
@@ -177,7 +177,7 @@ function callEngineScripts(engines) {
                         engine.currentVersion = null;
                     } else {
                         engine.currentVersion = cleanVersionOutput(stdout, engine.name);
-                        if (engine.currentVersion === "") {
+                        if (engine.currentVersion === '') {
                             events.emit('warn', engine.name +' version check returned nothing ('+ scriptPath +'), continuing anyways.');
                             engine.currentVersion = null;
                         }