aboutsummaryrefslogtreecommitdiff
path: root/packages.gradle
diff options
context:
space:
mode:
authorKonstantin Boudnik <cos@apache.org>2014-06-23 11:15:11 -0700
committerKonstantin Boudnik <cos@apache.org>2014-06-23 11:19:35 -0700
commitc25a210b30d2c6b940ed841c62aa970bc92437ab (patch)
tree8ea5822ff62b23689e4f23fd07e65c829af5bfed /packages.gradle
parent5a0530d53536e25128f29de9e0f2ac0166da5fc0 (diff)
BIGTOP-1346. Generalize evaluation regexp in packages.gradle
Diffstat (limited to 'packages.gradle')
-rw-r--r--packages.gradle2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.gradle b/packages.gradle
index eb2e959e..a059ff67 100644
--- a/packages.gradle
+++ b/packages.gradle
@@ -467,7 +467,7 @@ def readBOM = {
bomfile.eachLine {
if (!it.startsWith("#") && !it.isEmpty()) {
if (it.startsWith("\$(eval")) {
- def pattern = ~/.*call PACKAGE,(\w+[-]?\w+?),(\w+)/
+ def pattern = ~/.*call PACKAGE,(\w+[-\w+]*),(\w+)/
def m = it =~ pattern
assert m.size() == 1
def target = m[0][1]