diff --git a/builder/build.go b/builder/build.go index 92d426f..ba03ccf 100644 --- a/builder/build.go +++ b/builder/build.go @@ -382,7 +382,7 @@ func (p *Package) BuildXML(notif PidNotifier, pman *EopkgManager, overlay *Overl // Now build the package, ignore-sandbox in case someone is stupid // and activates it in eopkg.conf... - cmd := eopkgCommand(fmt.Sprintf("eopkg build --ignore-sandbox --yes-all -O %s %s", wdir, xmlFile)) + cmd := eopkgCommand(fmt.Sprintf("eopkg.py3 build --ignore-sandbox --yes-all -O %s %s", wdir, xmlFile)) slog.Info("Now starting build", "package", p.Name) diff --git a/builder/eopkg.go b/builder/eopkg.go index 1c0c887..1f1f1a1 100644 --- a/builder/eopkg.go +++ b/builder/eopkg.go @@ -219,7 +219,7 @@ func (e *EopkgManager) Upgrade() error { // InstallComponent will install the named component inside the chroot. func (e *EopkgManager) InstallComponent(comp string) error { - err := ChrootExec(e.notif, e.root, eopkgCommand(fmt.Sprintf("eopkg install -c %v -y", comp))) + err := ChrootExec(e.notif, e.root, eopkgCommand(fmt.Sprintf("eopkg install -y -c %v", comp))) e.notif.SetActivePID(0) return err