diff options
Diffstat (limited to 'build')
-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> |