We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 182f145 commit a6fc4a0Copy full SHA for a6fc4a0
src/irc.coffee
@@ -73,9 +73,19 @@ class IrcBot extends Adapter
73
command: (command, strings...) ->
74
@bot.send command, strings...
75
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
+
84
run: ->
85
self = @
86
87
+ do @checkCanStart
88
89
options =
90
nick: process.env.HUBOT_IRC_NICK or @robot.name
91
port: process.env.HUBOT_IRC_PORT
0 commit comments