fix additional registry auth not being nested correctly under 'auths' key

This commit is contained in:
2023-12-06 12:39:50 +01:00
parent 2db35341c0
commit 6ccd719229
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ export function mergeArgRegistryAuthJson(registryAuthJson) {
if (argRegistryAuth.auths != null) {
for (const key in argRegistryAuth.auths) {
if (argRegistryAuth.auths.hasOwnProperty(key)) {
registryAuthJson[key] = argRegistryAuth.auths[key];
registryAuthJson.auths[key] = argRegistryAuth.auths[key];
}
}
}