Removed unneeded comments

This commit is contained in:
2019-07-14 22:19:55 +01:00
parent 07569b146e
commit 2db5f97ff3
-2
View File
@@ -35,9 +35,7 @@
</copy> </copy>
<foreach item="File" in="${build.output.directory}" property="fileName"> <foreach item="File" in="${build.output.directory}" property="fileName">
<!-- If the file has the .msi extension -->
<if test="${string::to-lower(path::get-extension(fileName)) == '.msi'}"> <if test="${string::to-lower(path::get-extension(fileName)) == '.msi'}">
<!-- Rename the file to .txt extension -->
<move file="${fileName}" tofile="${path::combine(path::get-directory-name(fileName), path::get-file-name-without-extension(fileName) + '${build.number}.msi')}" /> <move file="${fileName}" tofile="${path::combine(path::get-directory-name(fileName), path::get-file-name-without-extension(fileName) + '${build.number}.msi')}" />
</if> </if>
</foreach> </foreach>