mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 06:48:56 +00:00
9 lines
108 B
Bash
9 lines
108 B
Bash
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
make watch-frontend &
|
||
|
make watch-backend &
|
||
|
|
||
|
trap 'kill $(jobs -p)' EXIT
|
||
|
wait
|