9 lines
150 B
Bash
Executable File
9 lines
150 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
make --no-print-directory watch-frontend &
|
|
make --no-print-directory watch-backend &
|
|
|
|
trap 'kill $(jobs -p)' EXIT
|
|
wait
|