source: trunk/dev/bin/script/DEBUG-EXPEDITEE.sh@ 771

Last change on this file since 771 was 771, checked in by davidb, 10 years ago

Restructuring of command-list test/debugging scripts

  • Property svn:executable set to *
File size: 572 bytes
Line 
1#!/bin/bash
2
3if [ "x$expeditee_filespace_home" = "x" ] ; then
4 expeditee_filespace_home="$TMP/expeditee-filespace-home"
5fi
6
7echo "****"
8
9cygpath 2>/dev/null
10if [ $? != 0 ] ; then
11 echo "* Detected runing in Cygwin environment => Changing expeditee_filespace_home to Windows native format"
12 expeditee_filespace_home=`cygpath -w "$expeditee_filespace_home"`
13fi
14
15echo "* Lauching Expeditee.jar with expeditee.home=$expeditee_filespace_home"
16echo "****"
17
18java -classpath 'releases\Expeditee.jar' \
19 "-Dexpeditee.home=$expeditee_filespace_home" org.expeditee.gui.Browser
Note: See TracBrowser for help on using the repository browser.