-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrunscripts.xml
More file actions
33 lines (29 loc) · 788 Bytes
/
runscripts.xml
File metadata and controls
33 lines (29 loc) · 788 Bytes
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
29
30
31
32
<project name="antcall" default="dist" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
<property name="src" location="."/>
<property name="yourname" value=""/>
<target name="runscript1">
<exec executable="/bin/bash">
<arg value="${src}/script1.sh"/>
<arg value="${yourname}"/>
</exec>
</target>
<target name="runscript2">
<exec executable="/bin/bash">
<arg value="${src}/script2.sh"/>
</exec>
</target>
<target name="runscript3">
<exec executable="/bin/bash">
<arg value="${src}/script3.sh"/>
</exec>
</target>
<target name="runscript4">
<exec executable="/bin/bash">
<arg value="${src}/script4.sh"/>
</exec>
</target>
</project>