mirror of
https://github.com/thomiceli/opengist
synced 2024-11-08 12:55:50 +01:00
9 lines
108 B
Bash
9 lines
108 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
make watch_frontend &
|
|
make watch_backend &
|
|
|
|
trap 'kill $(jobs -p)' EXIT
|
|
wait
|