0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-02-19 01:55:43 -05:00
opengist/scripts/watch.sh
2024-04-03 01:56:55 +02:00

8 lines
106 B
Bash
Executable file

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