Adding rm nohup, moving starting comment to else

This commit is contained in:
mcafee%netscape.com 2000-02-29 22:00:49 +00:00
Родитель 3f3a4477b2
Коммит 765b5a5622
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -50,13 +50,14 @@ fi
# See how we were called.
case "$build_action" in
start)
echo "Starting $build_type tinderbox..."
if test -f $build_type.pid; then
echo "$build_type build already running with PID "`cat $build_type.pid`
else
echo "Starting $build_type tinderbox..."
nohup ./build-seamonkey.pl --$build_type &
echo "PID $!"
echo $! > $build_type.pid
\rm nohup.out
fi
;;
stop)