blob: 0ae14a3c47569e48a756b124b04c4dbc16f2a6cc (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
TOP_LEVEL="$(git rev-parse --show-toplevel)"
PORT="${1:-8001}"
echo ":: Watching directory src/ and serving continuous builds on http://localhost:${PORT}"
bash scripts/_build-and-serve.sh ${PORT}
fswatch -or src | xargs -n1 -I{} bash scripts/_build-and-serve.sh ${PORT}
|