weizhouapache commented on code in PR #8497:
URL: https://github.com/apache/cloudstack/pull/8497#discussion_r1496208757
##########
engine/schema/pom.xml:
##########
@@ -101,8 +101,10 @@
for (template in templateList) {
def data = lines.findAll {
it.contains(template) }
if (data != null) {
- def hypervisor =
template.tokenize('-')[-1]
- pom.properties["$hypervisor" +
".checksum"] = data[0].tokenize(' ')[0]
+ if (data.size() > 0) {
Review Comment:
I tried it at the beginning, unfortunately it did not work...
It uses XML, not Java.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]