head	1.1;
access;
symbols
	charm6_1:1.1
	charm_6_0_1:1.1
	charm6_0_1:1.1
	charm6_0:1.1
	ChaNGa_1-0:1.1
	charm5_9:1.1;
locks; strict;
comment	@# @;


1.1
date	2004.10.11.19.48.13;	author olawlor;	state Exp;
branches;
next	;


desc
@@


1.1
log
@Tiny utility routines for calling no-argument CCS routines.
@
text
@#!/bin/sh

mainclass="charm/ccs/PokeCCS"
jarpath="$0.jar"

if test -x /usr/bin/cygpath
then 
  if test "`uname -o`" = "Cygwin"
  then
    jarpath=`/usr/bin/cygpath -w -a $jarpath`
  fi 
fi

java -classpath $jarpath $mainclass $*
@
