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

[1/2] git commit: Fixing error on new CLI/LIB: cp: no such file or directory: /Users/rodrigo/mozilla/cordova/delme/platforms/firefoxos/www/cordova.js

Repository: cordova-firefoxos
Updated Branches:
  refs/heads/master 30665243a -> 393c875a3


Fixing error on new CLI/LIB: cp: no such file or directory: /Users/rodrigo/mozilla/cordova/delme/platforms/firefoxos/www/cordova.js


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

Branch: refs/heads/master
Commit: 20def3b060620e71113d8fa8c6cd671fb6ca2504
Parents: 3066524
Author: Rodrigo Silveira <ro...@outlook.com>
Authored: Wed Jul 30 15:03:11 2014 -0700
Committer: Rodrigo Silveira <ro...@outlook.com>
Committed: Wed Jul 30 15:03:11 2014 -0700

----------------------------------------------------------------------
 bin/lib/create.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-firefoxos/blob/20def3b0/bin/lib/create.js
----------------------------------------------------------------------
diff --git a/bin/lib/create.js b/bin/lib/create.js
index bc7b1c9..800396e 100755
--- a/bin/lib/create.js
+++ b/bin/lib/create.js
@@ -42,7 +42,7 @@ exports.createProject = function(project_path,package_name,project_name){
     
     // Check that requirements are met and proper targets are installed
     if (!check_reqs.run()) {
-        console.error('Please make sure you meeet the software requirements in order to build an firefoxos cordova project');
+        console.error('Please make sure you meet the software requirements in order to build an firefoxos cordova project');
         process.exit(2);
     }
     
@@ -68,7 +68,7 @@ exports.createProject = function(project_path,package_name,project_name){
     shjs.cp('-r', path.join(ROOT, 'bin', 'templates', 'project', 'platform_www'), project_path);
 
     //copy cordova js file
-    shjs.cp('-r', path.join(ROOT, 'cordova-lib', 'cordova.js'), path.join(project_path,'platform_www'));
+    shjs.cp('-r', path.join(ROOT, 'cordova-lib', 'cordova.js'), path.join(project_path, 'www'));
 
     [
         'run',


[2/2] git commit: Merge remote-tracking branch 'rodms/cp-error'

Posted by za...@apache.org.
Merge remote-tracking branch 'rodms/cp-error'


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

Branch: refs/heads/master
Commit: 393c875a3f68de3d86b43bf57c018edd313e8d42
Parents: 3066524 20def3b
Author: Piotr Zalewa <pi...@zalewa.info>
Authored: Thu Jul 31 01:08:42 2014 +0200
Committer: Piotr Zalewa <pi...@zalewa.info>
Committed: Thu Jul 31 01:08:42 2014 +0200

----------------------------------------------------------------------
 bin/lib/create.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------