code.gitea.io/gitea@v1.21.7/build/watch.sh (about)

     1  #!/bin/bash
     2  set -euo pipefail
     3  
     4  make --no-print-directory watch-frontend &
     5  make --no-print-directory watch-backend &
     6  
     7  trap 'kill $(jobs -p)' EXIT
     8  wait