actually, do set the working directory to the exe path because it achieves the identical result and matches the i2p.i2p desktop shortcut behavior

This commit is contained in:
idk
2022-05-18 17:50:32 -04:00
parent 7627dd9742
commit 17f2c8bdae

View File

@ -9,7 +9,8 @@ netstat /o /a | find /i "listening" | find ":4444" >nul 2>nul && (
echo "I2P is already running, not launching"
) || (
echo "I2P is not running, launching"
start "i2p" %I2PPath%i2p.exe
echo start "i2p" /D "%I2PPath%" %I2PPath%i2p.exe
start "i2p" /D "%I2PPath%" i2p.exe
)