Files
Atay-Makhzan/tools/watch.sh
T

9 lines
108 B
Bash
Raw Normal View History

2020-09-05 02:55:06 +02:00
#!/bin/bash
set -euo pipefail
make watch-frontend &
make watch-backend &
trap 'kill $(jobs -p)' EXIT
wait