build.sh 660 B

12345678910111213141516171819202122
  1. #!/bin/sh
  2. ##########################
  3. # Licensed Materials - Property of IBM
  4. #
  5. # IBM Cognos Products: cpscrn
  6. #
  7. #
  8. # (C) Copyright IBM Corp. 2005, 2012
  9. #
  10. # US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  11. #
  12. ##########################
  13. # Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  14. # Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  15. if [ "$JAVA_HOME" = "" ]
  16. then
  17. echo The JAVA_HOME variable must be present
  18. else
  19. $JAVA_HOME/bin/java -classpath "../../bin/ant.jar:../../bin/ant-launcher.jar" org.apache.tools.ant.Main $@
  20. fi