|
|
@@ -29,6 +29,16 @@
|
|
|
</target>
|
|
|
|
|
|
|
|
|
+ <target name="system_cache__appinfo:default_db_get_xml_schema_if_not_exists_check" depends="read_build_properties">
|
|
|
+ <condition property="default_db_get_xml_schema_if_not_exists_check" taskname="system_cache__appinfo:default_db_get_xml_schema_if_not_exists">
|
|
|
+ <available file="${default_db.xml}"/>
|
|
|
+ </condition>
|
|
|
+ </target>
|
|
|
+
|
|
|
+ <target name="system_cache__appinfo:default_db_get_xml_schema_if_not_exists" depends="system_cache__appinfo:default_db_get_xml_schema_if_not_exists_check" unless="${default_db_get_xml_schema_if_not_exists_check}">
|
|
|
+ <antcall target="system_cache__appinfo:default_db_get_xml_schema"/>
|
|
|
+ </target>
|
|
|
+
|
|
|
<target name="system_cache__appinfo:default_db_get_xml_schema" depends="read_build_properties">
|
|
|
<echo>We try to refresh ${default_db.xml} </echo>
|
|
|
<delete file="${default_db.xml}"/>
|