Don't set working directory in start command so it can just have one

This commit is contained in:
idk
2022-05-18 17:43:16 -04:00
parent 1e18aa8c0d
commit d4f14fdae9

View File

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