diff --git a/README b/README index 08b2d85..9c44ee5 100644 --- a/README +++ b/README @@ -1 +1 @@ -right? +Evil, or just misunderstood? diff --git a/conavore.coffee b/evilbot.coffee similarity index 97% rename from conavore.coffee rename to evilbot.coffee index d8ff391..d3b86aa 100644 --- a/conavore.coffee +++ b/evilbot.coffee @@ -1,5 +1,5 @@ # -# Hello, and welcome to Conavore. +# Hello, and welcome to Evilbot. # # Some of this is stolen from Hubot. # Some of this is not. @@ -23,9 +23,9 @@ env = process.env # robot brain # -ua = 'conavore 1.0' -username = env.CONAVORE_USERNAME -password = env.CONAVORE_PASSWORD +ua = 'evilbot 1.0' +username = env.EVILBOT_USERNAME +password = env.EVILBOT_PASSWORD request = (method, path, body, callback) -> if match = path.match(/^(https?):\/\/([^/]+?)(\/.+)/) diff --git a/start.sh b/start.sh index 608afb4..ed81ef2 100755 --- a/start.sh +++ b/start.sh @@ -1,8 +1,8 @@ #!/bin/sh # poor man's reloader. -# re-starts conavore when it dies of an error. +# re-starts evilbot when he dies of an error. -until /usr/bin/env coffee conavore.coffee; do - echo "conavore crashed with exit code $?. respawning.." >&2 +until /usr/bin/env coffee evilbot.coffee; do + echo "evilbot crashed with exit code $?. respawning.." >&2 sleep 1 done