Skip to content

Commit 52160b9

Browse files
committed
Fixed bin/cli, bin/serve and bin/watch to use exec (allowing signals to properly fwd)
1 parent d039452 commit 52160b9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bin/cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ popd > /dev/null
66

77
source ${0%/*}/.init
88

9-
IN_CLI=true CLI_BIN="$CLI_BIN" babel-node boot/Cli.js "$@"
9+
IN_CLI=true CLI_BIN="$CLI_BIN" exec babel-node boot/Cli.js "$@"

bin/serve

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
source ${0%/*}/.init
44

5-
babel-node boot/Http.js $@
5+
exec babel-node boot/Http.js $@

bin/watch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
source ${0%/*}/.init
44

5-
nodemon boot/Http.js
5+
exec nodemon boot/Http.js

0 commit comments

Comments
 (0)