opengist/scripts/watch.sh

9 lines
106 B
Bash
Raw Normal View History

2024-02-19 00:58:50 +00:00
#!/bin/sh
2023-04-06 09:47:30 +00:00
set -euo pipefail
make watch_frontend &
make watch_backend &
trap 'kill $(jobs -p)' EXIT
wait