opengist/watch.sh

9 lines
108 B
Bash
Raw Normal View History

2023-04-06 11:47:30 +02:00
#!/bin/bash
set -euo pipefail
make watch_frontend &
make watch_backend &
trap 'kill $(jobs -p)' EXIT
wait