Upstream: https://github.com/Rhoban/onshape-to-robot Upstream-Commit: 80e710700aac9573a2230f74f7ce9e094833a0bc Upstream-Branch: master
15 lines
191 B
Bash
15 lines
191 B
Bash
#!/bin/bash
|
|
|
|
make html
|
|
echo "Starting watching..."
|
|
killall php
|
|
cd build/html
|
|
php -S localhost:8080 &
|
|
cd ../..
|
|
|
|
while [ true ]
|
|
do
|
|
inotifywait source/*.rst
|
|
make html
|
|
sleep 0.5
|
|
done |