fix path issue on Windows

Former-commit-id: c063eae03c
Former-commit-id: 2718b961a5d3abe3805f9e0a1cf61db2175e6bdc
This commit is contained in:
idk
2022-08-21 18:03:17 -04:00
parent 5192d7f20a
commit efab728a99

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++;
}
}