mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-22 20:42:40 +00:00
8 lines
108 B
Bash
Executable file
8 lines
108 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
make watch_frontend &
|
|
make watch_backend &
|
|
|
|
trap 'kill $(jobs -p)' EXIT
|
|
wait
|