--noprovides now hides Yay's provider menu

--noprovides flag now takes the default option in the provider menu
without showing the menu.
This commit is contained in:
Peter Dyer 2018-10-18 23:12:51 +01:00
parent c2aeb4bc4e
commit e71fb8617a

View file

@ -280,6 +280,10 @@ func (ds *depSolver) findSatisfierAurCache(dep string) *rpc.Pkg {
}
}
if !config.Provides && providers.Len() >= 1 {
return providers.Pkgs[0]
}
if providers.Len() == 1 {
return providers.Pkgs[0]
}