code maybe confusing, but now using Packet.lua format

This commit is contained in:
2025-10-25 20:17:20 -03:00
parent ecce74d2e9
commit 820ffc299f
7 changed files with 413 additions and 68 deletions

View File

@@ -32,10 +32,9 @@ func (container Container) createNew() error {
return err
}
var wg sync.WaitGroup
var mu sync.Mutex
for _, depn := range dependencies {
wg.Add(1)
go container.asyncFullInstallDependencie(depn, cfg.Config.StorePackages, depn, &wg, &mu)
go container.asyncFullInstallDependencie(depn, cfg.Config.StorePackages, depn, &wg)
}
wg.Wait()