15 lines
389 B
CoffeeScript
15 lines
389 B
CoffeeScript
# Description:
|
|
# What you are referring to is actually GNU + Linux....
|
|
#
|
|
# Configuration:
|
|
# None
|
|
#
|
|
# Author:
|
|
# Enrico Fasoli (fazo96)
|
|
|
|
module.exports = (robot) ->
|
|
robot.hear /(.)*linux(.)*/i, (res) ->
|
|
s = res.match[0]
|
|
if s.toLowerCase().indexOf('gnu') < 0
|
|
res.send 'http://s2.quickmeme.com/img/b9/b91afe13fc7e1b79898b1f65a12b4d23a25d5083ec0410185ff563fdf8ce8a87.jpg'
|