mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
fix ""DIR
This commit is contained in:
parent
e9c2409eab
commit
9e035ed727
1 changed files with 2 additions and 2 deletions
|
|
@ -63,10 +63,10 @@ function start_up(){
|
||||||
local port=$1
|
local port=$1
|
||||||
echo "Starting up Pelican and HTTP server"
|
echo "Starting up Pelican and HTTP server"
|
||||||
shift
|
shift
|
||||||
$PELICAN --debug --autoreload -r "$INPUT"DIR -o "$OUTPUT"DIR -s "$CONFFILE" $PELICANOPTS &
|
$PELICAN --debug --autoreload -r "$INPUT"DIR -o "$OUTPUTDIR" -s "$CONFFILE" $PELICANOPTS &
|
||||||
pelican_pid=$!
|
pelican_pid=$!
|
||||||
echo $pelican_pid > "$PELICAN_PID"
|
echo $pelican_pid > "$PELICAN_PID"
|
||||||
mkdir -p "$OUTPUT"DIR && cd "$OUTPUT"DIR
|
mkdir -p "$OUTPUTDIR" && cd "$OUTPUTDIR"
|
||||||
$PY -m pelican.server $port &
|
$PY -m pelican.server $port &
|
||||||
srv_pid=$!
|
srv_pid=$!
|
||||||
echo $srv_pid > "$SRV_PID"
|
echo $srv_pid > "$SRV_PID"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue