9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
npm install
|
|
export PATH="node_modules/.bin:node_modules/hubot/node_modules/.bin:$PATH"
|
|
|
|
DEBUG=nightmare PYTHON=python2 BIND_ADDRESS=localhost node_modules/.bin/hubot --name "asjon" "$@"
|