This commit is contained in:
SrGooglo 2024-03-25 08:13:26 +01:00
parent 5047ddc539
commit b660c4e458

View File

@ -52,8 +52,8 @@ class ElectronApp {
await this.pkgManager.execute(manifest_id)
}
},
"pkg:apply": (event, manifest_id, changes) => {
this.pkgManager.applyChanges(manifest_id, changes)
"pkg:apply": async (event, manifest_id, changes) => {
return await this.pkgManager.applyChanges(manifest_id, changes)
},
"pkg:retry_install": async (event, manifest_id) => {
const pkg = await this.pkgManager.getInstalledPackages(manifest_id)