Skip to content

Commit b40f345

Browse files
committed
fix: do not trap ctrl+c as this prevents madwizard cleanup
1 parent 5c6cfd8 commit b40f345

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/codeflare

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ if [ "$NODE" != "node" ] && [ ! -f ~/.codeflare ] && [ $(uname) = Linux ]; then
139139
fi
140140

141141
# helps with ctrl+c when running in a docker container
142-
trap 'pkill -P $$; exit 1;' TERM INT
142+
# trap 'pkill -P $$; exit 1;' TERM INT
143143

144144
# otherwise, we launch the UI version
145145
export CODEFLARE_HEADLESS=$HEADLESS

0 commit comments

Comments
 (0)