forked from hiraq/catalog-cake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
28 lines (24 loc) · 836 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<project name="Catalog Cake" default="build">
<target name="clear_cache">
<delete>
<fileset dir="app/tmp/cache/models">
<include name="*" />
</fileset>
<fileset dir="app/tmp/cache/persistent">
<include name="*" />
</fileset>
<fileset dir="app/tmp/cache/views">
<include name="*" />
</fileset>
<exclude name="empty" />
</delete>
</target>
<target name="translate" depends="clear_cache">
<exec command="./app/Console/cake i18n extract" passthru="true" />
</target>
<target name="build">
<phingcall target="translate" />
<phingcall target="clear_cache" />
</target>
</project>