From 3de3ef62dc5453557da98b09e20d7a5579110402 Mon Sep 17 00:00:00 2001 From: Andres Torres Date: Thu, 12 Jan 2012 12:34:32 -0600 Subject: [PATCH] Janky now allows branches with a '/' in their name. --- src/scripts/janky.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/janky.coffee b/src/scripts/janky.coffee index cff0632b0..08e7b3e9c 100644 --- a/src/scripts/janky.coffee +++ b/src/scripts/janky.coffee @@ -120,7 +120,7 @@ module.exports = (robot) -> else msg.send("who knows") - robot.respond /ci status (-v )?([-_\.0-9a-zA-Z]+)(\/([-_\.a-zA-z0-9]+))?/i, (msg) -> + robot.respond /ci status (-v )?([-_\.0-9a-zA-Z]+)(\/([-_\.a-zA-z0-9\/]+))?/i, (msg) -> app = msg.match[2] count = 5 branch = msg.match[4] || 'master'