commit | f74b5b2bfd75dca12f8969da16e03126bd598813 | [log] [tgz] |
---|---|---|
author | June Tate-Gans <jtgans@google.com> | Wed Jun 10 18:30:17 2020 -0400 |
committer | June Tate-Gans <jtgans@google.com> | Wed Jun 10 18:30:17 2020 -0400 |
tree | ce226775c961285b58f1d499e19271848c943624 | |
parent | 438ec8f7bdc2466c6d8e48398e77d37c2ad25151 [diff] |
Use alternative syntax to concatenate lists. Change-Id: Ie74b2e3a733b329e678ade27dffe2124083bf072
diff --git a/vars/functions.groovy b/vars/functions.groovy index 7419b34..6e7180f 100644 --- a/vars/functions.groovy +++ b/vars/functions.groovy
@@ -67,7 +67,7 @@ } def filenames = (packages + sources).each{entry -> entry.path} - packageFilenames += filenames + packageFilenames = packageFilenames + filenames }