Skip to content

Commit

Permalink
Build: Remove norelease from forbidden patterns (#26592)
Browse files Browse the repository at this point in the history
closes #26547
  • Loading branch information
rjernst committed Sep 11, 2017
1 parent 0f493f2 commit 03f8cb3
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,6 @@ public class ForbiddenPatternsTask extends DefaultTask {
patterns.put('nocommit should be all lowercase or all uppercase',
/((?i)nocommit)(?<!(nocommit|NOCOMMIT))/)
patterns.put('tab', /\t/)
if (System.getProperty('build.snapshot', 'true').equals('false')) {
patterns.put('norelease', /norelease|NORELEASE/)
}
patterns.put('norelease should be all lowercase or all uppercase',
/((?i)norelease)(?<!(norelease|NORELEASE))/)


inputs.property("excludes", filesFilter.excludes)
Expand Down

0 comments on commit 03f8cb3

Please sign in to comment.