提交 87a6f086 编写于 作者: Huan (李卓桓)'s avatar Huan (李卓桓)

fix `can only "return" from a function or sourced script` error

上级 950b7aec
...@@ -118,7 +118,8 @@ function wechaty::runBot() { ...@@ -118,7 +118,8 @@ function wechaty::runBot() {
echo "Executing ts-node $*" echo "Executing ts-node $*"
local -i ret=0 local -i ret=0
ts-node "$@" || ret=$? ts-node "$@" &
wait "$!" || ret=$? # fix `can only `return' from a function or sourced script` error
case "$ret" in case "$ret" in
0) 0)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册