diff --git a/src/spec-configuration/httpOCIRegistry.ts b/src/spec-configuration/httpOCIRegistry.ts index 2bebba82e..f4e7e867a 100644 --- a/src/spec-configuration/httpOCIRegistry.ts +++ b/src/spec-configuration/httpOCIRegistry.ts @@ -66,7 +66,7 @@ export async function requestEnsureAuthenticated(params: CommonParams, httpOptio // Attempt to authenticate via WWW-Authenticate Header. const wwwAuthenticate = initialAttemptRes.resHeaders['WWW-Authenticate'] || initialAttemptRes.resHeaders['www-authenticate']; if (!wwwAuthenticate) { - output.write(`[httpOci] ERR: Server did not provide instructions to authentiate! (Required: A 'WWW-Authenticate' Header)`, LogLevel.Error); + output.write(`[httpOci] ERR: Server did not provide instructions to authenticate! (Required: A 'WWW-Authenticate' Header)`, LogLevel.Error); return; } @@ -428,4 +428,4 @@ async function fetchRegistryBearerToken(params: CommonParams, ociRef: OCIRef | O } return scopeToken; -} \ No newline at end of file +}