Fixing a few stupid problems

This commit is contained in:
Jay McCarthy 2010-11-10 09:46:41 -07:00
parent 78ccf5393c
commit ff65a2ec17
3 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
#!/bin/bash #!/bin/bash
rsync -avz . plt-drdr:/opt/svn/drdr/ --exclude=.svn rsync -avz . plt-drdr:/opt/svn/drdr/ --exclude=compiled --delete --exclude=data

View File

@ -21,7 +21,7 @@ run_loop () { # <basename> <kill?>
echo "$1: compiling" echo "$1: compiling"
"$PLTROOT/bin/raco" make "$1.rkt" "$PLTROOT/bin/raco" make "$1.rkt"
echo "$1: running" echo "$1: running"
"$MZ" -t "$1.rkt" 2>&1 >> "$LOGS/$1.log" & "$R" -t "$1.rkt" 2>&1 >> "$LOGS/$1.log" &
echo "$!" > "$LOGS/$1.pid" echo "$!" > "$LOGS/$1.pid"
wait "$!" wait "$!"
echo "$1: died" echo "$1: died"