mirror of
https://github.com/thomiceli/opengist.git
synced 2025-05-14 08:12:09 +02:00
9 lines
108 B
Bash
Executable File
9 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
make watch_frontend &
|
|
make watch_backend &
|
|
|
|
trap 'kill $(jobs -p)' EXIT
|
|
wait
|