You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2013/09/10 15:22:19 UTC

android commit: [CB-4769] Fix create script failure due to deleted version.js file

Updated Branches:
  refs/heads/master 2b0aa0338 -> 483dd3435


[CB-4769] Fix create script failure due to deleted version.js file


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

Branch: refs/heads/master
Commit: 483dd3435a91e24e424141d4bcefa5751f3703fd
Parents: 2b0aa03
Author: Andrew Grieve <ag...@chromium.org>
Authored: Tue Sep 10 09:21:57 2013 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Tue Sep 10 09:21:57 2013 -0400

----------------------------------------------------------------------
 bin/lib/create.js | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/483dd343/bin/lib/create.js
----------------------------------------------------------------------
diff --git a/bin/lib/create.js b/bin/lib/create.js
index 6afbf89..955de1a 100755
--- a/bin/lib/create.js
+++ b/bin/lib/create.js
@@ -162,7 +162,6 @@ module.exports.run = function(project_path, package_name, project_name, project_
     shell.cp(path.join(lib_path, 'emulator.js'), path.join(project_path, 'cordova', 'lib', 'emulator.js'));
     shell.cp(path.join(lib_path, 'log.js'), path.join(project_path, 'cordova', 'lib', 'log.js'));
     shell.cp(path.join(lib_path, 'run.js'), path.join(project_path, 'cordova', 'lib', 'run.js'));
-    shell.cp(path.join(lib_path, 'version.js'), path.join(project_path, 'cordova', 'lib', 'version.js'));
     shell.cp(path.join(lib_path, 'install-device'), path.join(project_path, 'cordova', 'lib', 'install-device'));
     shell.chmod(755, path.join(project_path, 'cordova', 'lib', 'install-device'));
     shell.cp(path.join(lib_path, 'install-emulator'), path.join(project_path, 'cordova', 'lib', 'install-emulator'));