source: trunk/dist_linux/qcg-icon @ 177

Revision 177, 741 bytes checked in by mmamonski, 12 years ago (diff)

Resubmit from checkpoint only for finished jobs, improved installation scripts, increased default proxy lifetime, MouseEvent? logging, Fixed typo in documentation

RevLine 
[139]1#!/bin/sh
2
3# change dir to the location of this script
4cd $(readlink -f $(dirname $0))
5
6# prepare dependancy list. Notice: LIBS are terminated with a colon
7LIBS=$(ls -1 lib/*.jar | tac | tr '\n' ':')
8# why tac: because normal order of the files in listing results in error below:
9#    java.lang.SecurityException: class "org.bouncycastle.asn1.DERInputStream"'s signer information does not match signer information of other classes in the same package
10# once the packages are loaded upside-down, all's fine :\
11
12# prepare java virtual machine arguments
13JVM_ARGS="-Djava.util.logging.config.file=logging.properties -Dorg.qcg.core.sdk.timeout.read=60000 -Xrs"
14
15# launch QCG-Icon
16java ${JVM_ARGS} -cp "${LIBS}QCG-Icon.jar" org.qcg.icon.Main "$@"
Note: See TracBrowser for help on using the repository browser.