Skip to content

Commit

Permalink
Merge pull request #117 from getsolus/pass-eopkg-cmd-to-ypkg-install-…
Browse files Browse the repository at this point in the history
…deps

Add installCommand to ypkg-install-deps invocation
  • Loading branch information
ermo authored Oct 23, 2024
2 parents 2670e56 + 7eb6c7d commit 3ec7d86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builder/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ func (p *Package) PrepYpkg(notif PidNotifier, usr *UserInfo, pman *EopkgManager,
wdir := p.GetWorkDirInternal()
ymlFile := filepath.Join(wdir, filepath.Base(p.Path))

cmd := fmt.Sprintf("ypkg-install-deps -f %s", ymlFile)
cmd := fmt.Sprintf("ypkg-install-deps --eopkg-cmd='%s' -f %s", installCommand, ymlFile)
if DisableColors {
cmd += " -n"
}
Expand Down

0 comments on commit 3ec7d86

Please sign in to comment.