mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01: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
|