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

Skip to content
Snippets Groups Projects
Commit 0de81294 authored by hypercubus's avatar hypercubus Committed by zzz
Browse files

* installer no longer hangs on Windows waiting for the spawned shell process to return

* shell process spawned by the installer on Windows will not create a visible command window
parent 13f70ad4
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,10 @@ ...@@ -3,7 +3,10 @@
<processing> <processing>
<job name="Launching I2P..."> <job name="Launching I2P...">
<os family="windows" /> <os family="windows" />
<executefile name="$INSTALL_PATH/postinstall.bat" /> <!-- start /min cmd /c %INSTALL_PATH%/postinstall.sh %INSTALL_PATH%" -->
<executefile name="C:\Windows\System32\cmd.exe">
<arg>/c</arg><arg>"$INSTALL_PATH\postinstall.bat"</arg>
</executefile>
</job> </job>
<job name="Launching I2P..."> <job name="Launching I2P...">
<os family="unix" /> <os family="unix" />
......
...@@ -16,4 +16,4 @@ set INSTALL_PATH=%~dp0 ...@@ -16,4 +16,4 @@ set INSTALL_PATH=%~dp0
copy "%INSTALL_PATH%lib\wrapper\win32\I2Psvc.exe" "%INSTALL_PATH%" copy "%INSTALL_PATH%lib\wrapper\win32\I2Psvc.exe" "%INSTALL_PATH%"
copy "%INSTALL_PATH%lib\wrapper\win32\wrapper.dll" "%INSTALL_PATH%lib" copy "%INSTALL_PATH%lib\wrapper\win32\wrapper.dll" "%INSTALL_PATH%lib"
copy "%INSTALL_PATH%lib\wrapper\win32\wrapper.jar" "%INSTALL_PATH%lib" copy "%INSTALL_PATH%lib\wrapper\win32\wrapper.jar" "%INSTALL_PATH%lib"
"%INSTALL_PATH%i2prouter.bat" start /b /i /d"%INSTALL_PATH%" i2prouter.bat
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