Skip to content

Commit 44f68b5

Browse files
authored
chore(develop): fix processes not killing (coder#1083)
1 parent 3151bef commit 44f68b5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

develop.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,6 @@ cd "${PROJECT_ROOT}"
1414
(
1515
trap 'kill 0' SIGINT
1616
CODERV2_HOST=http://127.0.0.1:3000 INSPECT_XSTATE=true yarn --cwd=./site dev &
17-
go run cmd/coder/main.go start --dev --skip-tunnel
17+
go run cmd/coder/main.go start --dev --skip-tunnel &
18+
wait
1819
)

0 commit comments

Comments
 (0)