Skip to content

Commit a6fc4a0

Browse files
committed
Adding some helpful errors for missing environment variables
1 parent 182f145 commit a6fc4a0

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/irc.coffee

+10
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,19 @@ class IrcBot extends Adapter
7373
command: (command, strings...) ->
7474
@bot.send command, strings...
7575

76+
checkCanStart: ->
77+
if not process.env.HUBOT_IRC_NICK or @robot.name
78+
throw new Error("HUBOT_IRC_NICK is not defined; try: export HUBOT_IRC_NICK='mybot'")
79+
else if not process.env.HUBOT_IRC_ROOMS
80+
throw new Error("HUBOT_IRC_ROOMS is not defined; try: export HUBOT_IRC_ROOMS='#myroom'")
81+
else if not process.env.HUBOT_IRC_SERVER
82+
throw new Error("HUBOT_IRC_SERVER is not defined: try: export HUBOT_IRC_SERVER='irc.myserver.com'")
83+
7684
run: ->
7785
self = @
7886

87+
do @checkCanStart
88+
7989
options =
8090
nick: process.env.HUBOT_IRC_NICK or @robot.name
8191
port: process.env.HUBOT_IRC_PORT

0 commit comments

Comments
 (0)