fix secondary get with token

This commit is contained in:
James Brumond 2023-08-18 21:46:52 -07:00
parent acab3bc116
commit dc3b78f911
Signed by: james
GPG Key ID: E8F2FC44BAA3357A
2 changed files with 2 additions and 2 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(input.insecure_registry, 'GET', input.registry_url + path, {
({ status, headers, body } = await http_req('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