Commit 2fb0b78069045cad347b23262b4e9c956b71e9bc

Authored by ww
1 parent 3dad76cc

fix: in windows environment build war package encoding type exist problem

Showing 1 changed file with 1 additions and 1 deletions
@@ -567,7 +567,7 @@ @@ -567,7 +567,7 @@
567 </target> 567 </target>
568 568
569 <target name="war" depends="app, javac" description="Create the stand-alone war file"> 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 </zip> 571 </zip>
572 </target> 572 </target>
573 573