merge manifest on execution

This commit is contained in:
srgooglo 2023-11-15 02:22:04 +01:00
parent e78047665d
commit 9d47c25902

View File

@ -386,7 +386,10 @@ export default class PkgManager {
} }
if (manifest.remote_url) { if (manifest.remote_url) {
manifest = await readManifest(manifest.remote_url, { just_read: true }) manifest = {
...manifest,
...await readManifest(manifest.remote_url, { just_read: true }),
}
} }
manifest = await initManifest(manifest) manifest = await initManifest(manifest)