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/03 00:06:23 UTC

[3/3] git commit: CB-6776 (correct windows8 fallback path)

CB-6776 (correct windows8 fallback path)


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

Branch: refs/heads/master
Commit: 07ad206336ac1fa93d47aeea545e2795e477d865
Parents: 8ec83be
Author: Josh Soref <js...@blackberry.com>
Authored: Wed Jul 2 18:03:02 2014 -0400
Committer: Josh Soref <js...@blackberry.com>
Committed: Wed Jul 2 18:05:32 2014 -0400

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


http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/07ad2063/cordova-lib/src/cordova/lazy_load.js
----------------------------------------------------------------------
diff --git a/cordova-lib/src/cordova/lazy_load.js b/cordova-lib/src/cordova/lazy_load.js
index b1b30d2..2f67711 100644
--- a/cordova-lib/src/cordova/lazy_load.js
+++ b/cordova-lib/src/cordova/lazy_load.js
@@ -56,7 +56,7 @@ exports.based_on_config = based_on_config;
 // Returns a promise for the path to the lazy-loaded directory.
 function based_on_config(project_root, platform, opts) {
     var custom_path = config.has_custom_path(project_root, platform);
-    if (custom_path === undefined && platform === 'windows') {
+    if (custom_path === false && platform === 'windows') {
         custom_path = config.has_custom_path(project_root, 'windows8');
     }
     if (custom_path) {