0
Fork 0
mirror of https://github.com/thomiceli/opengist.git synced 2025-02-12 01:48:02 -05:00
opengist/watch.sh
2023-04-06 13:55:04 +02:00

8 lines
108 B
Bash

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