1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-14 06:06:08 +02:00
gitea/build/watch.sh

9 lines
150 B
Bash
Raw Normal View History

#!/bin/bash
set -euo pipefail
make --no-print-directory watch-frontend &
make --no-print-directory watch-backend &
trap 'kill $(jobs -p)' EXIT
wait