Skip to content

Commit 856ee9a

Browse files
authored
trap kill 0 on EXIT rather than limiting it on SIGINT (#582)
1 parent da9449e commit 856ee9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ start: start-all # build -> serve
3232
build: build-server build-web
3333
serve: serve-all # serve only. does not build.
3434
watch:
35-
(trap 'kill 0' SIGINT; make watch-web & make watch-server & wait)
35+
(trap 'kill 0' EXIT; make watch-web & make watch-server & wait)
3636

3737

3838
test: export DATABASE_URL=$(LOCAL_DB)

0 commit comments

Comments
 (0)