You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2015/03/06 23:27:58 UTC

[26/31] ios commit: Fix Q include in check_reqs.js (close #132)

Fix Q include in check_reqs.js (close #132)

The npm package is q (lowercase) but was being required as Q (uppercase). For
most people this probably works fine due to case insensitive filesystems, but
if your Mac is configured to be case-sensitive or you're on Linux, this script
would generate an error and prevent building.


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

Branch: refs/heads/wkwebview
Commit: 8e6d5c3344b0e9376dfcf4e245117aaa46f945d1
Parents: 4575b36
Author: Darryl Pogue <dv...@gmail.com>
Authored: Sat Feb 28 16:09:43 2015 -0800
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Mon Mar 2 09:50:38 2015 -0500

----------------------------------------------------------------------
 bin/lib/check_reqs.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8e6d5c33/bin/lib/check_reqs.js
----------------------------------------------------------------------
diff --git a/bin/lib/check_reqs.js b/bin/lib/check_reqs.js
index 6b4cce5..be6d82d 100644
--- a/bin/lib/check_reqs.js
+++ b/bin/lib/check_reqs.js
@@ -22,7 +22,7 @@
           sub:true, laxcomma:true, laxbreak:true
 */
 
-var Q     = require('Q'),
+var Q     = require('q'),
     os    = require('os'),
     shell = require('shelljs'),
     versions = require('./versions');


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