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

add help message

上级 55d45964
......@@ -137,6 +137,17 @@ function wechaty::runBot() {
return "$ret"
}
function wechaty::help() {
echo <<HELP
Usage: wechaty <mybot.js | mybot.ts | command>
1. mybot.js: a JavaScript program for your bot. will run by node v6
2. mybot.ts: a TypeScript program for your bot. will run by ts-node
3. command: demo, test, doctor
HELP
}
function main() {
wechaty::banner
figlet Connecting
......@@ -175,6 +186,14 @@ function main() {
npm "$@" || ret=$?
;;
'')
if [ -n "$WECHATY_TOKEN" ]; then
npm start
else
wechaty::help
fi
;;
#
# 4. Default to execute npm run ...
#
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册