You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.sh 211 B

12345678910111213141516
  1. #!/bin/sh
  2. cygwin=false;
  3. case "`uname`" in
  4. CYGWIN*) cygwin=true ;;
  5. esac
  6. PWD=`pwd`
  7. if $cygwin ; then
  8. PWD=`cygpath --windows "$PWD"`
  9. fi
  10. cd ../../..
  11. /bin/sh ./build.sh -buildfile $PWD/build.xml $*
  12. cd $PWD