blob: a2f05a1571728d8e36bf7963fd4f6f7e6a225ff0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# Old version: call phing directly (still working)
#PHING_HOME=`pwd`/buildscripts/phing
#export PHING_HOME
#PHP_CLASSPATH=$PHING_HOME/classes
#export PHP_CLASSPATH
#php -d html_errors=off -qC buildscripts/phing/bin/phing.php $@
# New version: let phing's wrapper do the dirty job
./buildscripts/phing/bin/phing $@
|