diff --git a/src/main/pkg_mng/index.js b/src/main/pkg_mng/index.js index 5a5f8d3..561586d 100644 --- a/src/main/pkg_mng/index.js +++ b/src/main/pkg_mng/index.js @@ -386,7 +386,10 @@ export default class PkgManager { } 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)