diff options
author | Gareth Rees <gareth@mysociety.org> | 2014-11-20 15:18:54 +0000 |
---|---|---|
committer | Gareth Rees <gareth@mysociety.org> | 2014-11-20 15:18:54 +0000 |
commit | 8a1ddb0b56bbc68418473c78cf5e3b6faa044c95 (patch) | |
tree | 6228b23d04b4891236148516adfc6568884fbd66 | |
parent | 30acdb97eb91f073ee6fde063fb5cb0e9f73a002 (diff) | |
parent | 0b8306257b1125fead3093968b4764f5fae6bd88 (diff) |
Merge branch '1905-prep-for-full-version-string' into rails-3-develop
-rw-r--r-- | lib/tasks/themes.rake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/tasks/themes.rake b/lib/tasks/themes.rake index 4a864d141..cbd12fd86 100644 --- a/lib/tasks/themes.rake +++ b/lib/tasks/themes.rake @@ -65,6 +65,8 @@ namespace :themes do result.push usage_tag(ALAVETELI_VERSION) hotfix_match = /^(\d+\.\d+\.\d+)(\.\d+)+/.match(ALAVETELI_VERSION) result.push usage_tag(hotfix_match[1]) if hotfix_match + minor_match = /^(\d+\.\d+)(\.\d+)+/.match(ALAVETELI_VERSION) + result.push usage_tag(minor_match[1]) if minor_match result end |