I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Verified Commit f02bf9b7 authored by idk's avatar idk
Browse files

quote %JAVA% in eepget.bat script on Windows to prevent paths from splitting....

quote %JAVA% in eepget.bat script on Windows to prevent paths from splitting. Closes 31 on i2p.www, which was mis-filed
parent 907e6496
No related branches found
No related tags found
No related merge requests found
......@@ -71,14 +71,14 @@ if not defined JAVA (set JAVA="%JAVA_PATH%\bin\java.exe")
:eepget
::
:: The binary in %JAVA% should exist, assuming it was set by us. Perhaps it
:: The binary in "%JAVA%" should exist, assuming it was set by us. Perhaps it
:: won't if the user specified it manually. Let's check to be sure.
::
if not exist %JAVA% (
echo. Could not find %JAVA%. Please ensure that the variable JAVA
if not exist "%JAVA%" (
echo. Could not find "%JAVA%". Please ensure that the variable JAVA
echo. refers to a path that exists.
goto end
)
%JAVA% -cp "%_I2PHOME%\lib\i2p.jar" net.i2p.util.EepGet %1 %2 %3 %4 %5
"%JAVA%" -cp "%_I2PHOME%\lib\i2p.jar" net.i2p.util.EepGet %1 %2 %3 %4 %5
:end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment