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