fix path issue on Windows

Former-commit-id: 7f9bcbe1c0
Former-commit-id: 8f5f4ae6385e1330740f672323f5eb15420fc982
This commit is contained in:
idk
2022-08-21 17:59:55 -04:00
parent 26b83c9b5e
commit 5192d7f20a

View File

@ -82,7 +82,7 @@ public class I2PFirefox {
int i = 0;
for (String s : path) {
for (String exe : exes) {
exePath[i] = s + exe;
exePath[i] = s + "/" + exe;
i++;
}
}