/[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

Contents of /trunk/bin/dev.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1167 - (show annotations)
Thu Jul 2 18:56:17 2009 UTC (14 years, 8 months ago) by dpavlin
File MIME type: application/x-sh
File size: 509 byte(s)
don't include status bar if FREY_DEV environment variable isn't set
1 #!/bin/sh -x
2
3 # 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
21 export FREY_DEV=1
22
23 while true ; do
24
25 FREY_NO_LOG=1 perl -c $server || exit
26 FREY_RESTART=1 $server || exit
27 FREY_SWITCH_SCREEN=0
28
29 done
30

Properties

Name Value
svn:executable *

  ViewVC Help
Powered by ViewVC 1.1.26