@echo off
set /P c=Generate new jars or not (Y/N)?
if /I "%c%" EQU "N" goto donotgenerateJars
if /I "%c%" EQU "Y" goto generateJars
:generateJars
jar cvf D:/SCC/SCC-3_1/plugins/ASEMAP/lib/ASEMapPlugin.jar com/sybase/ua/ ASEMaplog4j.properties
echo Generate new jars finished!
goto end
:donotgenerateJars
echo Did not generate new jars!
:end
set /P c=Generate new jars or not (Y/N)?
if /I "%c%" EQU "N" goto donotgenerateJars
if /I "%c%" EQU "Y" goto generateJars
:generateJars
jar cvf D:/SCC/SCC-3_1/plugins/ASEMAP/lib/ASEMapPlugin.jar com/sybase/ua/ ASEMaplog4j.properties
echo Generate new jars finished!
goto end
:donotgenerateJars
echo Did not generate new jars!
:end