diff options
author | Louise Crow <louise.crow@gmail.com> | 2014-11-27 10:11:53 +0000 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2014-11-27 10:11:53 +0000 |
commit | a4f611c7dbea8892fc48c7ffe7e192564a8d16f8 (patch) | |
tree | ab833996173315724f06a1b8abfb7e8ddcc2543c /lib/tasks | |
parent | 89c9add7a48a4b8f696877db8105f4b35ec85431 (diff) | |
parent | 3b1b2753b16126c3cc45e67c6e3df599f062bd7e (diff) |
Merge branch 'rails-3-develop' of ssh://git.mysociety.org/data/git/public/alaveteli into rails-3-develop
Diffstat (limited to 'lib/tasks')
-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 |