allow dots (.) in job names when used as build input
This commit is contained in:
parent
203a9b9ad7
commit
9b4f09ba83
|
@ -68,7 +68,7 @@ sub parseJobName {
|
||||||
our $key;
|
our $key;
|
||||||
our %attrs = ();
|
our %attrs = ();
|
||||||
# hm, maybe I should stop programming Perl before it's too late...
|
# hm, maybe I should stop programming Perl before it's too late...
|
||||||
$s =~ / ^ (?: (?: ([\w\-]+) : )? ([\w\-]+) : )? ([\w\-]+) \s*
|
$s =~ / ^ (?: (?: ([\w\-]+) : )? ([\w\-]+) : )? ([\w\-\.]+) \s*
|
||||||
(\[ \s* (
|
(\[ \s* (
|
||||||
([\w]+) (?{ $key = $^N; }) \s* = \s* \"
|
([\w]+) (?{ $key = $^N; }) \s* = \s* \"
|
||||||
([\w\-]+) (?{ $attrs{$key} = $^N; }) \"
|
([\w\-]+) (?{ $attrs{$key} = $^N; }) \"
|
||||||
|
|
Loading…
Reference in a new issue