opengist/scripts/watch.sh
2023-09-26 15:13:58 +02:00

8 lines
108 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
make watch_frontend &
make watch_backend &
trap 'kill $(jobs -p)' EXIT
wait