mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +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
|