Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
be a wee bit stricter in checking compiler names for rebuild
  • Loading branch information
moritz committed Mar 18, 2012
1 parent dddfa71 commit 07d32e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evalbot.pl
Expand Up @@ -243,7 +243,7 @@ package Evalbot;
} elsif ($command eq 'version'){
return "This is evalbot revision $evalbot_version";
}
} elsif ($message =~ m/\Aevalbot\s*rebuild\s+(\w+)/) {
} elsif ($message =~ m/\Aevalbot\s*rebuild\s+([a-zA-Z0-9_]+)$/) {
my $name = "$1";
# XXX We want better integration so that this can go to the right place
if (EvalbotExecuter::try_lock($name)) {
Expand Down

0 comments on commit 07d32e8

Please sign in to comment.