build.sh 436 B

12345678910111213
  1. #!/bin/sh
  2. # Licensed Materials - Property of IBM
  3. # IBM Cognos Products: disp
  4. # (C) Copyright IBM Corp. 2005 2010
  5. # US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. if [ "$JAVA_HOME" = "" ]
  7. then
  8. echo The JAVA_HOME variable must be present
  9. else
  10. $JAVA_HOME/bin/java -classpath "../../bin/ant.jar:../../bin/ant-launcher.jar" org.apache.tools.ant.Main $@
  11. fi