gitea/tools/watch.sh

9 lines
108 B
Bash

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