Fix insecure_disable_tls_host_verification in serve more

It's currently using `--insecure_tls_verify_host` which is inconsistent with
fetch-mode and not what the help text says.
This commit is contained in:
Karl Seguin
2025-05-26 22:42:42 +08:00
parent 1a72bf5962
commit c77fb98b1f

View File

@@ -333,7 +333,7 @@ fn parseServeArgs(
continue; continue;
} }
if (std.mem.eql(u8, "--insecure_tls_verify_host", opt)) { if (std.mem.eql(u8, "--insecure_disable_tls_host_verification", opt)) {
tls_verify_host = false; tls_verify_host = false;
continue; continue;
} }