File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -61,9 +61,7 @@ fn build_auth(reference: &Reference) -> RegistryAuth {
61
61
Err ( CredentialRetrievalError :: ConfigNotFound ) => RegistryAuth :: Anonymous ,
62
62
Err ( CredentialRetrievalError :: NoCredentialConfigured ) => RegistryAuth :: Anonymous ,
63
63
Err ( e) => {
64
- log:: info!(
65
- "Error retrieving docker credentials: {e}. Using anonymous auth"
66
- ) ;
64
+ log:: info!( "Error retrieving docker credentials: {e}. Using anonymous auth" ) ;
67
65
RegistryAuth :: Anonymous
68
66
}
69
67
Ok ( DockerCredential :: UsernamePassword ( username, password) ) => {
@@ -131,9 +129,7 @@ async fn setup_trust_repository(cli: &Cli) -> Result<Box<dyn TrustRoot>, anyhow:
131
129
Err ( e) => log:: warn!( "Failed to read Fulcio certificates file: {e}" ) ,
132
130
}
133
131
} else {
134
- log:: warn!(
135
- "Fulcio certificates file not found: {fulcio_certs_path:?}"
136
- ) ;
132
+ log:: warn!( "Fulcio certificates file not found: {fulcio_certs_path:?}" ) ;
137
133
}
138
134
}
139
135
You can’t perform that action at this time.
0 commit comments