bump version and extend timeout again

This commit is contained in:
idk
2022-09-04 21:34:14 -04:00
parent 5cf5d56738
commit ab2548ecd4
2 changed files with 3 additions and 3 deletions

View File

@@ -11,8 +11,8 @@ VERSIONMINOR=9
VERSIONBUILD=1
I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
export I2P_VERSION="$VERSIONMAJOR.$VERSIONMINOR.$VERSIONBUILD"
VERSION=i2p-jpackage-1.9.1
export VERSION=i2p-jpackage-1.9.1
VERSION=i2p-jpackage-1.9.2
export VERSION=i2p-jpackage-1.9.2
#Uncomment this to build from the tip of the master.
#I2P_VERSION=1.8.0

View File

@@ -144,7 +144,7 @@ public class WinLauncher {
}
private static boolean i2pIsRunning() {
for (int i = 0; i > 10; i++) {
for (int i = 0; i > 30; i++) {
sleep(2000);
// check if there's something listening on port 7657(Router Console)
if (!isAvailable(7657)) {