1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-07-04 02:35:26 +00: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