Repository: bigtop
Updated Branches:
  refs/heads/master 5a0530d53 -> c25a210b3


BIGTOP-1346. Generalize evaluation regexp in packages.gradle


Project: http://git-wip-us.apache.org/repos/asf/bigtop/repo
Commit: http://git-wip-us.apache.org/repos/asf/bigtop/commit/c25a210b
Tree: http://git-wip-us.apache.org/repos/asf/bigtop/tree/c25a210b
Diff: http://git-wip-us.apache.org/repos/asf/bigtop/diff/c25a210b

Branch: refs/heads/master
Commit: c25a210b30d2c6b940ed841c62aa970bc92437ab
Parents: 5a0530d
Author: Konstantin Boudnik <[email protected]>
Authored: Mon Jun 23 11:15:11 2014 -0700
Committer: Konstantin Boudnik <[email protected]>
Committed: Mon Jun 23 11:19:35 2014 -0700

----------------------------------------------------------------------
 packages.gradle | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/bigtop/blob/c25a210b/packages.gradle
----------------------------------------------------------------------
diff --git a/packages.gradle b/packages.gradle
index eb2e959..a059ff6 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]

Reply via email to