proguardgui.bat revision cfead78069f3dc32998dc118ee08cab3867acea2
1@ECHO OFF
2
3REM Start-up script for the GUI of ProGuard -- free class file shrinker,
4REM optimizer, obfuscator, and preverifier for Java bytecode.
5REM
6REM Note: when passing file names containing spaces to this script,
7REM       you'll have to add escaped quotes around them, e.g.
8REM       "\"C:/My Directory/My File.txt\""
9
10IF EXIST "%PROGUARD_HOME%" GOTO home
11SET PROGUARD_HOME=..
12:home
13
14java -jar "%PROGUARD_HOME%"\lib\proguardgui.jar %*
15