-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.xml
18 lines (18 loc) · 893 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<project name="guzzle-aws" default="init">
<!-- ============================================ -->
<!-- Target: init -->
<!-- ============================================ -->
<target name="init">
<echo msg="Preparing phpunit.xml" />
<echo msg="Please enter the root root path to your git clone of guzzle" />
<input propertyname="path_to_guzzle">Path to guzzle: </input>
<available file="${path_to_guzzle}/src/Guzzle/Guzzle.php" property="correct" value="1"/>
<fail unless="correct" msg="That does not appear to be a path to an installation of Guzzle" />
<copy file="./phpunit.xml.dist" tofile="./phpunit.xml" overwrite="true">
<filterchain>
<expandproperties />
</filterchain>
</copy>
</target>
</project>