mirror of
https://github.com/Xevion/the-office.git
synced 2026-01-31 04:26:17 -06:00
9 lines
220 B
Bash
9 lines
220 B
Bash
#!/bin/sh
|
|
|
|
# exit as soon as a single command finishes (any status), kill the rest
|
|
parallel --ungroup --halt now,done=1 ::: \
|
|
"./start_caddy.sh" \
|
|
"./start_typesense.sh"
|
|
|
|
# always exit with a failure status
|
|
false |