diff options
author | jzaefferer <joern.zaefferer@gmail.com> | 2010-06-23 15:21:17 +0200 |
---|---|---|
committer | jzaefferer <joern.zaefferer@gmail.com> | 2010-06-23 15:21:17 +0200 |
commit | 3824f75c004c983cde7e8c26e7c234a2f77c5913 (patch) | |
tree | b26b99bebdcf2ee5942c3652117cab7e4d5e23dd /build/build.xml | |
parent | 0bfbd7afa1a0eb72737a93c0b43d69e2c2d5cb15 (diff) | |
download | jquery-ui-3824f75c004c983cde7e8c26e7c234a2f77c5913.tar.gz jquery-ui-3824f75c004c983cde7e8c26e7c234a2f77c5913.zip |
Build: Include folders for themes and googlecdn builds. Fixed #5759 Build: all zips should contain folder at root named same as zip
Diffstat (limited to 'build/build.xml')
-rw-r--r-- | build/build.xml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/build/build.xml b/build/build.xml index c8d18079f..50e4c0117 100644 --- a/build/build.xml +++ b/build/build.xml @@ -297,8 +297,11 @@ <mapper type="regexp" from="(.*)jquery-ui-.*custom.css" to="\1jquery-ui.css" /> </mapper> </move> + <copy todir="dist/${release.filename}-themes"> + <fileset dir="${dist.dir}/" includes="AUTHORS.txt,GPL-LICENSE.txt,MIT-LICENSE.txt,version.txt,themes/**" /> + </copy> <zip destfile="${dist.dir}/../${release.filename}-themes.zip"> - <zipfileset dir="${dist.dir}/" includes="AUTHORS.txt,GPL-LICENSE.txt,MIT-LICENSE.txt,version.txt,themes/**" /> + <zipfileset dir="dist/" includes="${release.filename}-themes/" /> </zip> </target> @@ -342,7 +345,7 @@ </for> <delete dir="${cdndist.dir}" includes="**/*.MD5" /> <zip destfile="${dist.dir}/../${release.filename}-googlecdn.zip"> - <zipfileset dir="${cdndist.dir}/" /> + <zipfileset dir="dist/" includes="${release.filename}-googlecdn/" /> </zip> </target> |