fix path issue on Windows

This commit is contained in:
idk
2022-08-21 18:13:17 -04:00
parent c063eae03c
commit 7cef932d3d
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
GITHUB_USER=eyedeekay GITHUB_USER=eyedeekay
GITHUB_REPO=i2p.plugins.firefox GITHUB_REPO=i2p.plugins.firefox
GITHUB_NAME="Which fixes a Windows-specific bug I think" GITHUB_NAME="Which fixes a Windows-specific bug"
GITHUB_DESCRIPTION=$(cat CHANGES.md) GITHUB_DESCRIPTION=$(cat CHANGES.md)
GITHUB_TAG=0.0.14 GITHUB_TAG=0.0.14
ant distclean ant distclean

View File

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