Improve make support on Linux

This commit is contained in:
Taylor Helsper 2019-09-05 19:51:26 -05:00
parent a3864f53a6
commit a8ff3f1341

View File

@ -2,8 +2,10 @@
start_server () {
echo "Starting HTTP Server on port 8000..."
python3 -m http.server --directory ./out > /dev/null &
cd out
python3 -m http.server > /dev/null &
PID=$!
cd ../
echo $PID > ./out/file_server_pid
sleep 1
}