chore(develop): fix processes not killing (#1083)

This commit is contained in:
Joe Previte
2022-04-20 09:34:05 -05:00
committed by GitHub
parent 3151befb38
commit 44f68b5942

View File

@ -14,5 +14,6 @@ cd "${PROJECT_ROOT}"
(
trap 'kill 0' SIGINT
CODERV2_HOST=http://127.0.0.1:3000 INSPECT_XSTATE=true yarn --cwd=./site dev &
go run cmd/coder/main.go start --dev --skip-tunnel
go run cmd/coder/main.go start --dev --skip-tunnel &
wait
)