We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c97906 commit 8051ae4Copy full SHA for 8051ae4
src/oci.rs
@@ -86,7 +86,9 @@ async fn setup_trust_repository(cli: &Cli) -> Result<Box<dyn TrustRoot>, anyhow:
86
Err(e) => {
87
log::error!("Failed to initialize TUF trust repository: {e}");
88
if !cli.insecure_skip_signature {
89
- return Err(anyhow!("Failed to initialize TUF trust repository and signature verification is required"));
+ return Err(anyhow!(
90
+ "Failed to initialize TUF trust repository and signature verification is required"
91
+ ));
92
}
93
log::info!("Falling back to manual trust repository");
94
0 commit comments