Update Pathname version checks.
* allow capital 'RC' * allow 'stable' suffix
This commit is contained in:
parent
f666addeac
commit
7d852f10a7
@ -131,7 +131,7 @@ class Pathname
|
||||
return $1 if $1
|
||||
|
||||
# eg. foobar-4.5.1b
|
||||
/-((\d+\.)*\d+([abc]|rc\d))$/.match stem
|
||||
/-((\d+\.)*\d+([abc]|rc|RC\d))$/.match stem
|
||||
return $1 if $1
|
||||
|
||||
# eg foobar-4.5.0-beta1
|
||||
@ -143,7 +143,7 @@ class Pathname
|
||||
return $1 if $1
|
||||
|
||||
# eg foobar-4.5.0-bin
|
||||
/-((\d+\.)+\d+[abc]?)[-.](bin|src|sources?)$/.match stem
|
||||
/-((\d+\.)+\d+[abc]?)[-.](bin|stable|src|sources?)$/.match stem
|
||||
return $1 if $1
|
||||
|
||||
# eg. otp_src_R13B (this is erlang's style)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user