fix: Community packages update check (no-changelog) (#15684)

Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
This commit is contained in:
Michael Kret
2025-05-26 15:41:13 +03:00
committed by GitHub
parent 075b035d64
commit 5b241db4e3
4 changed files with 256 additions and 55 deletions

View File

@@ -160,7 +160,7 @@ export abstract class BaseCommand extends Command {
const { communityPackages } = this.globalConfig.nodes;
if (communityPackages.enabled && this.needsCommunityPackages) {
const { CommunityPackagesService } = await import('@/services/community-packages.service');
await Container.get(CommunityPackagesService).checkForMissingPackages();
await Container.get(CommunityPackagesService).init();
}
if (this.needsTaskRunner && this.globalConfig.taskRunners.enabled) {