Changeset 1226


Ignore:
Timestamp:
06/26/13 15:28:17 (11 years ago)
Author:
pharms
Message:
  • corrected line endings
  • changed behavior so that the script returns directly after being called
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/autoquest-htmlmonitor/bin/run.sh

    r1176 r1226  
    165165# &1 is stdout, &2 is stderr 
    166166echo "Starting autoquest-htmlmonitor" 
    167 exec 3>&1 4>&2 >>"$LOGDIR"/Console.log 2>&1 
    168 exec "$JAVACMD" -jar "${JAR_FILE}" "$LOGDIR" $2 
     167exec 3>&1 4>&2 >>"$LOGDIR"/console.log 2>&1 
     168 
     169echo "" 
     170echo "starting HTML monitor" 
     171date 
     172echo "using java $JAVACMD" 
     173 
     174$JAVACMD -jar ${JAR_FILE} $LOGDIR $2 2>&1 >> "$LOGDIR"/console.log & 
     175 
    169176# restore stdout and stderr 
    170177exec 1>&3 2>&4 
Note: See TracChangeset for help on using the changeset viewer.