mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Fix "server didn't start" error message in develop_server.sh
It has port 8000 hardcoded into it, which is confusing when the server runs on another port.
This commit is contained in:
parent
7fabd712a1
commit
43523dac4d
1 changed files with 1 additions and 1 deletions
|
|
@ -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.'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue