You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ti...@apache.org on 2013/02/06 13:18:10 UTC

webworks commit: Small fix for create script - cordova scripts didn't have proper permissions after being copied

Updated Branches:
  refs/heads/master e391d5f96 -> 73cd7222f


Small fix for create script - cordova scripts didn't have proper permissions after being copied


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

Branch: refs/heads/master
Commit: 73cd7222fa0390cd1ee8afc8f58461a61d36ea5d
Parents: e391d5f
Author: Tim Kim <ti...@adobe.com>
Authored: Wed Feb 6 04:18:01 2013 -0800
Committer: Tim Kim <ti...@adobe.com>
Committed: Wed Feb 6 04:18:01 2013 -0800

----------------------------------------------------------------------
 build.xml |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/73cd7222/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index 8c44b06..dcddbb6 100644
--- a/build.xml
+++ b/build.xml
@@ -110,7 +110,7 @@
         </copy>
         
         <!-- change file permission for cordova scripts because ant copy doesn't preserve file permissions -->
-        <chmod dir="${template.project.dir}/cordova" perm="700" includes="*"/>
+        <chmod dir="${project.path}/cordova" perm="700" includes="*"/>
         
         <!-- update project files to reference cordova.x.x.x.js -->
         <replaceregexp match="cordova\.js" replace="${js.basename}" byline="true">