/[Frey]/trunk/bin/dev.sh
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/bin/dev.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 627 by dpavlin, Sat Nov 29 22:02:08 2008 UTC revision 1167 by dpavlin, Thu Jul 2 18:56:17 2009 UTC
# Line 1  Line 1 
1  #!/bin/sh  #!/bin/sh -x
2    
3  server=./bin/server-continuity.pl  # This is my homage to Erlang - self restarting perl :-)
4    #
5    # it enabled to use die and confess when needed without
6    # having to worry about development flow
7    
8    server=./bin/server-mojo.pl
9    
10    pid=`cat var/dev.pid`
11    echo "## $pid"
12    if [ ! -z "$pid" ] ; then
13            echo "# kill $pid"
14            kill $pid
15            killall server-mojo.pl
16    fi
17    
18    echo $$ > var/dev.pid
19    
20  export FREY_SWITCH_SCREEN=1  export FREY_SWITCH_SCREEN=1
21    export FREY_DEV=1
22    
23  while true ; do  while true ; do
24    
25          FREY_NO_LOG=1 perl -c $server || exit          FREY_NO_LOG=1 perl -c $server || exit
26          FREY_RESTART=1 $server          FREY_RESTART=1 $server || exit
27          FREY_SWITCH_SCREEN=0          FREY_SWITCH_SCREEN=0
28    
29  done  done

Legend:
Removed from v.627  
changed lines
  Added in v.1167

  ViewVC Help
Powered by ViewVC 1.1.26