diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2021-08-10 14:19:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-10 14:19:42 +0200 |
commit | 548e4661121b32b2b9bfb0356b2329be91dec738 (patch) | |
tree | 3161f88f673a41fa6480e4371dc2d2e322180845 /cli/flags.rs | |
parent | b9a8111a00b58e355baf60a55893dbfc70b0dfdd (diff) |
chore: release crates (#11628)
Diffstat (limited to 'cli/flags.rs')
-rw-r--r-- | cli/flags.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/flags.rs b/cli/flags.rs index 0b060ce37..58cb84bbd 100644 --- a/cli/flags.rs +++ b/cli/flags.rs @@ -219,11 +219,11 @@ impl Flags { match &self.unsafely_ignore_certificate_errors { Some(ic_allowlist) if ic_allowlist.is_empty() => { - args.push("--unsafely-ignore_certificate_errors".to_string()); + args.push("--unsafely-ignore-certificate-errors".to_string()); } Some(ic_allowlist) => { let s = format!( - "--unsafely-ignore_certificate_errors={}", + "--unsafely-ignore-certificate-errors={}", ic_allowlist.join(",") ); args.push(s); |