Updated the JAR Makefile command to support UTF-8.

This commit is contained in:
John Resig 2009-02-17 21:56:42 +00:00
parent b1a40c9bfd
commit 1a65eb2a09

View file

@ -49,7 +49,7 @@ JQ_PACK = ${DIST_DIR}/jquery.pack.js
JQ_VER = `cat version.txt`
VER = sed s/@VERSION/${JQ_VER}/
JAR = java -jar ${BUILD_DIR}/js.jar
JAR = java -Dfile.encoding=utf-8 -jar ${BUILD_DIR}/js.jar
MINJAR = java -jar ${BUILD_DIR}/yuicompressor-2.4.2.jar
DATE=`svn info . | grep Date: | sed 's/.*: //g'`