forked from forceworkbench/forceworkbench
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
21 lines (18 loc) · 655 Bytes
/
build.xml
File metadata and controls
21 lines (18 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0"?>
<project name="Workbench" default="stage">
<property name="dir.src" value="workbench"/>
<target name="stage" description="Stages files for deployment">
<!--suppress PhingDomInspection -->
<fail unless="env.PUBLIC_HTML_DIR" message="Environment variable PUBLIC_HTML_DIR must be set"/>
<!--suppress PhingDomInspection -->
<copy todir="${env.PUBLIC_HTML_DIR}">
<fileset dir="${dir.src}">
<exclude name="**/config/overrides.php"/>
<exclude name="**/configOverrides.php"/>
</fileset>
</copy>
</target>
<target name="phpinfo">
<php function="phpinfo" />
</target>
</project>