rg9975 commented on code in PR #11071:
URL: https://github.com/apache/cloudstack/pull/11071#discussion_r2333332568
##########
engine/schema/pom.xml:
##########
@@ -106,7 +108,7 @@
templateList.add("systemvmtemplate-${csVersion}.${patch}-x86_64-xen")
templateList.add("systemvmtemplate-${csVersion}.${patch}-x86_64-ovm")
templateList.add("systemvmtemplate-${csVersion}.${patch}-x86_64-hyperv")
- File file = new
File("./engine/schema/dist/systemvm-templates/md5sum.txt")
+ File file = new
File("${basedir}/../../engine/schema/dist/systemvm-templates/md5sum.txt")
Review Comment:
Well, it technically will work, although it could have been expressed:
`File file = new File("${basedir}/dist/systemvm-templates/md5sum.txt")`
The primary motivation was to eliminate the relative File path that seems to
cause problems in Visual Studio Code during compilation.
--
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]