pear-propel-gen 827 B

12345678910111213141516171819202122232425
  1. #!/bin/sh
  2. # ------------------------------------------------------------------------
  3. # The phing build script for Unix based systems
  4. # $Id: pear-propel-gen,v 1.2 2004/10/17 13:24:09 hlellelid Exp $
  5. # ------------------------------------------------------------------------
  6. # -------------------------------------------------------------------------
  7. # Do not change anything below this line unless you know what you're doing.
  8. # -------------------------------------------------------------------------
  9. # (currently this is not reached)
  10. if (test -z "$PHING_COMMAND") ; then
  11. export PHING_COMMAND="phing"
  12. fi
  13. if [ $# = 1 ] ; then
  14. saveddir=`pwd`
  15. $PHING_COMMAND -f @DATA-DIR@/propel_generator/pear-build.xml -Dproject.dir=$saveddir $*
  16. else
  17. $PHING_COMMAND -f @DATA-DIR@/propel_generator/pear-build.xml -Dproject.dir=$*
  18. fi