8 lines
175 B
Bash
8 lines
175 B
Bash
#!/bin/ksh
|
|
set -a
|
|
ANT_HOME=apache-ant-1.6.2
|
|
JAVA_HOME=/usr/java14
|
|
PATH=$ANT_HOME/bin:$JAVA_HOME/bin:$PATH
|
|
|
|
ant clean-all -buildfile buildTest.xml
|
|
ant -buildfile buildTest.xml |