123456789101112131415161718192021 |
- #!/bin/sh
- ##########################
- # Licensed Materials - Property of IBM
- #
- # IBM Cognos Products: cpscrn
- #
- #
- # (C) Copyright IBM Corp. 2005, 2012
- #
- # US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- #
- ##########################
- # Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
- # Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
- if [ "$JAVA_HOME" = "" ]
- then
- echo The JAVA_HOME variable must be present
- else
- $JAVA_HOME/bin/java -classpath "../../bin/ant.jar:../../bin/ant-launcher.jar" org.apache.tools.ant.Main $@
- fi
|