specify port 80 to match instructions

This commit is contained in:
Andrew Calcutt 2022-09-15 15:48:50 -04:00
parent 3136ccd83a
commit aba436ea98

View File

@ -20,7 +20,7 @@ trap refresh HUP
if ! which -- "${1}"; then
# first arg is not an executable
xvfb-run -a --server-args="-screen 0 1024x768x24" -- node /app/ "$@" &
xvfb-run -a --server-args="-screen 0 1024x768x24" -- node /app/ -p 80 "$@" &
# Wait exits immediately on signals which have traps set. Store return value and wait
# again for all jobs to actually complete before continuing.
wait $! || RETVAL=$?