echo port in run.sh

Change-Id: I697a97bf9f00d597a8471315f9b7aeb343022644
This commit is contained in:
Robert Hencke 2011-07-09 11:34:33 -05:00
parent 93bb2c28c8
commit 110d16e2d8
1 changed files with 3 additions and 2 deletions

View File

@ -3,10 +3,11 @@
set -e
Bin=$(dirname $( readlink -f $0))
Port=8081
LOGDIR=$Bin/../logs
mkdir -p $LOGDIR
cd $Bin
echo "Running camweb in $Bin"
../build.pl website && ./camweb --http=:8081 --root=$Bin --logdir=$LOGDIR
echo "Running camweb in $Bin on port $Port"
../build.pl website && ./camweb --http=:$Port --root=$Bin --logdir=$LOGDIR