Some checks are pending
Integration tests for the release process / release-simulation (push) Waiting to run
8 lines
150 B
Bash
8 lines
150 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
make --no-print-directory watch-frontend &
|
|
make --no-print-directory watch-backend &
|
|
|
|
trap 'kill $(jobs -p)' EXIT
|
|
wait
|