Files
http-server/test/startwebserver.sh

8 lines
115 B
Bash
Executable File

#!/bin/bash
echo "Starting webserver..."
until pgrep "$SERVER"; do
cd "$SERVER_DIR" && ./$SERVER &
sleep 2
done