1
0
Fork 0
forked from github/pelican

Merge pull request #1387 from eliben/fix-devserver-port

Fix "server didn't start" error message in develop_server.sh
This commit is contained in:
Justin Mayer 2014-07-02 12:22:15 -07:00
commit 8d14872700

View file

@ -75,7 +75,7 @@ function start_up(){
echo "Pelican didn't start. Is the Pelican package installed?"
return 1
elif ! alive $$srv_pid ; then
echo "The HTTP server didn't start. Is there another service using port 8000?"
echo "The HTTP server didn't start. Is there another service using port" $$port "?"
return 1
fi
echo 'Pelican and HTTP server processes now running in background.'