1 Commits

Author SHA1 Message Date
idk
b46f04344d Check i2p running status before attempting to start the router 2020-04-03 20:42:45 -04:00
2 changed files with 5 additions and 2 deletions

View File

@ -2,7 +2,7 @@
GO111MODULE=on
VERSION=0.0.1
VERSION=0.0.11
USER_GH=eyedeekay
version:

View File

@ -218,7 +218,10 @@ func ConditionallyLaunchI2P() (bool, error) {
}
return true, nil
}
}
return true, nil
}else{
return false, err
}
} else {
return false, fmt.Errorf("I2P is not a default location, please set $I2P environment variable")
}