root/tags/2.2.0RC1/bin/pear-phing

Revision 1, 0.8 kB (checked in by hans, 3 years ago)

Initial checkin

  • Property svn:executable set to *
Line 
1 #!/bin/sh
2
3 # ------------------------------------------------------------------------
4 # The phing build script for Unix based systems
5 # $Id: pear-phing,v 1.3 2003/12/23 19:45:14 hlellelid Exp $
6 # ------------------------------------------------------------------------
7
8 # Change this to reflect your environment if the default value doesn't work
9 export PHP_COMMAND="@PHP-BIN@"
10
11 # -------------------------------------------------------------------------
12 # Do not change anything below this line unless you know what you're doing.
13 # -------------------------------------------------------------------------
14
15 if (test -z "$PHP_COMMAND") ; then
16         echo "WARNING: PHP_COMMAND environment not set. (Assuming php on PATH)"
17         export PHP_COMMAND=php
18 fi
19
20 $PHP_COMMAND -d html_errors=off -qC @PEAR-DIR@/phing.php -logger phing.listener.AnsiColorLogger $*
Note: See TracBrowser for help on using the browser.