mirror of https://github.com/go-gitea/gitea.git
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
|