From 9d47c259029b7865dce4510f5d3ae8bdd80ff0fa Mon Sep 17 00:00:00 2001 From: srgooglo Date: Wed, 15 Nov 2023 02:22:04 +0100 Subject: [PATCH] merge manifest on execution --- src/main/pkg_mng/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)