forked from LeeSaferite/mage-phing-buildtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
16 lines (16 loc) · 720 Bytes
/
build.xml
File metadata and controls
16 lines (16 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<project name="Magento Build" default="flush-cache" basedir="..">
<!-- This build file is just to hide all targets that shouldn't be directly callable -->
<target name="rebuild">
<phing buildfile="${project.basedir}/build/common.xml" target="rebuild"/>
</target>
<target name="relink">
<phing buildfile="${project.basedir}/build/common.xml" target="relink"/>
</target>
<target name="flush-cache">
<phing buildfile="${project.basedir}/build/common.xml" target="flush-cache"/>
</target>
<target name="extract-base-for-ide">
<phing buildfile="${project.basedir}/build/common.xml" target="extract-base-for-ide"/>
</target>
</project>