Add initial hubot generation files.

This commit is contained in:
2019-07-02 21:39:26 -04:00
parent 7e3478964a
commit 5af7d009a2
11 changed files with 1527 additions and 0 deletions

8
bin/hubot Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
npm install
export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH"
exec node_modules/.bin/hubot --name "404bot" "$@"

7
bin/hubot.cmd Normal file
View File

@@ -0,0 +1,7 @@
@echo off
call npm install
SETLOCAL
SET PATH=node_modules\.bin;node_modules\hubot\node_modules\.bin;%PATH%
node_modules\.bin\hubot.cmd --name "404bot" %*