summaryrefslogtreecommitdiff
path: root/ciabot
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-06-01 13:07:22 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-06-01 13:07:22 +0200
commitdc64b3dd2b567c9d73fe4aa5b61f8aaeac05dce2 (patch)
treecd539ed96c637b2c379ff6c88e4ba5194f3955eb /ciabot
parent5b17e860514b1ac3252be0c2ade1b4248883eab4 (diff)
fix 3f17397, the master branch is represented by the empty string
Diffstat (limited to 'ciabot')
-rwxr-xr-xciabot/run-libreoffice-ciabot.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/ciabot/run-libreoffice-ciabot.pl b/ciabot/run-libreoffice-ciabot.pl
index 1976e88..9a102fb 100755
--- a/ciabot/run-libreoffice-ciabot.pl
+++ b/ciabot/run-libreoffice-ciabot.pl
@@ -62,6 +62,7 @@ sub get_branches() {
sub is_valid_bugzilla_commit($$) {
my ( $repo, $branch ) = @_;
return 1 if ( $repo ne 'core' );
+ return 1 if ( $branch eq '' );
return ( $branch =~ /^(libreoffice-[^\/]*|master)$/ );
}