1
0
الملفات
Maqtaa/scripts/watch.sh
2024-04-03 01:56:55 +02:00

9 أسطر
106 B
Bash
ملف تنفيذي

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