opengist/scripts/watch.sh

9 lines
106 B
Bash
Raw Permalink Normal View History

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