v1.3.2, add hint

This commit is contained in:
2023-01-15 12:19:39 +08:00
parent 8135d1ceed
commit b6267a0c76
3 changed files with 3 additions and 3 deletions

View File

@@ -85,7 +85,7 @@ async fn main() -> tide::Result<()> {
} else {
let skip_verify_certificate = matches.is_present("skip-verify-certificate");
Some(get_local_public_ip(skip_verify_certificate).unwrap_or_else(|e| {
failure!("Get local public ip failed: {}", e);
failure!("Get local public ip failed: {}, you can turn off verify IP by -k or --skip-verify-ip", e);
exit(1);
}))
};