Commit fbc655ae06d7ee60d8ef7b48a9f21e4b46e13b01
Merge branch 'ww' into 'main'
fix: in windows environment build war package encoding type exist problem See merge request yunteng/thingskit-scada!57
Showing
1 changed file
with
1 additions
and
1 deletions
... | ... | @@ -567,7 +567,7 @@ |
567 | 567 | </target> |
568 | 568 | |
569 | 569 | <target name="war" depends="app, javac" description="Create the stand-alone war file"> |
570 | - <zip destfile="${build.dir}/${war.name}" basedir="${war.dir}" > | |
570 | + <zip encoding="utf-8" destfile="${build.dir}/${war.name}" basedir="${war.dir}" > | |
571 | 571 | </zip> |
572 | 572 | </target> |
573 | 573 | ... | ... |