Compare commits

..

No commits in common. "dc3b78f911c0a49faf684920dcfab6160706713b" and "06b2ca9b747b1f2e0a18c2749dad26b93b767ffa" have entirely different histories.

3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -2911,7 +2911,7 @@ async function get_manifest(input) {
if (status === 401 && headers['www-authenticate']) {
await get_token(headers['www-authenticate'], input);
({ status, headers, body } = await http_req('GET', input.registry_url + path, {
({ status, headers, body } = await http_req(input.insecure_registry, 'GET', input.registry_url + path, {
accept: manifest_media_type,
authorization: `Bearer ${input.token}`,
}));

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -50,7 +50,7 @@ async function get_manifest(input) {
if (status === 401 && headers['www-authenticate']) {
await get_token(headers['www-authenticate'], input);
({ status, headers, body } = await http_req('GET', input.registry_url + path, {
({ status, headers, body } = await http_req(input.insecure_registry, 'GET', input.registry_url + path, {
accept: manifest_media_type,
authorization: `Bearer ${input.token}`,
}));