summaryrefslogtreecommitdiffstats
path: root/tools/watch.sh
blob: 5e8defa49c89e95752cbaf3f7cb06b9e72c8ff0d (plain)
1
2
3
4
5
6
7
8
#!/bin/bash
set -euo pipefail

make --no-print-directory watch-frontend &
make --no-print-directory watch-backend &

trap 'kill $(jobs -p)' EXIT
wait