Update of /cvsroot/nice/Nice/bin
In directory sc8-pr-cvs1:/tmp/cvs-serv17797/F:/nice/bin
Modified Files:
nicec.bat
Log Message:
Added default locations of the nice.jar
Index: nicec.bat
===================================================================
RCS file: /cvsroot/nice/Nice/bin/nicec.bat,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** nicec.bat 12 May 2003 11:22:53 -0000 1.7
--- nicec.bat 13 May 2003 13:11:19 -0000 1.8
***************
*** 11,14 ****
--- 11,35 ----
if not "%NICE%" == "" goto gotNice
+ rem -- try some standard places
+
+ set NICE=c:\nice
+ if exist %NICE%\nice.jar goto gotNice
+
+ set NICE=c:\Program Files\nice
+ if exist %NICE%\nice.jar goto gotNice
+
+ set NICE=c:\programs\nice
+ if exist %NICE%\nice.jar goto gotNice
+
+ set NICE=d:\nice
+ if exist %NICE%\nice.jar goto gotNice
+
+ set NICE=d:\Program Files\nice
+ if exist %NICE%\nice.jar goto gotNice
+
+ set NICE=d:\programs\nice
+ if exist %NICE%\nice.jar goto gotNice
+
+
echo You must set the NICE environment variable to point to the directory you've installed nice in e.g.
echo set NICE=C:\programs\nice (note: do not add a ';' at the end)
|