Changeset 787


Ignore:
Timestamp:
01/29/14 23:32:43 (10 years ago)
Author:
davidb
Message:

Tweaks to script after testing under Linux

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dev/bin/script/DEBUG-EXPEDITEE.sh

    r786 r787  
    55fi
    66
     7expeditee_jar="releases/Expeditee.jar"
     8
    79echo "****"
    810
    9 cygpath 2>/dev/null
    10 if [ $? != 0 ] ; then
     11cygpath --help 2>/dev/null
     12if [ $? == 0 ] ; then
    1113  echo "* Detected runing in Cygwin environment => Changing expeditee_filespace_home to Windows native format"
    1214  expeditee_filespace_home=`cygpath -w "$expeditee_filespace_home"`
     15  expeditee_jar=`cygpath -w "$expeditee_jar"`
    1316fi
    1417
     
    1619echo "****"
    1720
    18 java -classpath 'releases\Expeditee.jar' \
     21java -classpath "$expeditee_jar" \
    1922    "-Dexpeditee.home=$expeditee_filespace_home" org.expeditee.gui.Browser
Note: See TracChangeset for help on using the changeset viewer.