diff --git a/Cargo.lock b/Cargo.lock index 5cbba8c..b19fab2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,7 +4,7 @@ version = 3 [[package]] name = "acme-client" -version = "1.3.1" +version = "1.3.2" dependencies = [ "acme-lib", "aliyun-openapi-core-rust-sdk", diff --git a/Cargo.toml b/Cargo.toml index 550f77f..cb17dae 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "acme-client" -version = "1.3.1" +version = "1.3.2" authors = ["Hatter Jiang "] edition = "2018" description = "Acme auto challenge client, acme-client can issue certificates from Let's encrypt" diff --git a/src/main.rs b/src/main.rs index 316e049..10f2f00 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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); })) };