toBuildables -> build
This commit is contained in:
parent
960e9c560e
commit
35fd31770c
|
@ -50,7 +50,7 @@ struct CmdBuild : MixDryRun, InstallablesCommand
|
|||
|
||||
void run(ref<Store> store) override
|
||||
{
|
||||
auto buildables = toBuildables(store, dryRun ? DryRun : Build, installables);
|
||||
auto buildables = build(store, dryRun ? DryRun : Build, installables);
|
||||
|
||||
for (size_t i = 0; i < buildables.size(); ++i) {
|
||||
auto & b(buildables[i]);
|
||||
|
|
|
@ -198,7 +198,7 @@ std::shared_ptr<Installable> parseInstallable(
|
|||
SourceExprCommand & cmd, ref<Store> store, const std::string & installable,
|
||||
bool useDefaultInstallables);
|
||||
|
||||
Buildables toBuildables(ref<Store> store, RealiseMode mode,
|
||||
Buildables build(ref<Store> store, RealiseMode mode,
|
||||
std::vector<std::shared_ptr<Installable>> installables);
|
||||
|
||||
PathSet toStorePaths(ref<Store> store, RealiseMode mode,
|
||||
|
|
|
@ -253,7 +253,7 @@ std::shared_ptr<Installable> parseInstallable(
|
|||
return installables.front();
|
||||
}
|
||||
|
||||
Buildables toBuildables(ref<Store> store, RealiseMode mode,
|
||||
Buildables build(ref<Store> store, RealiseMode mode,
|
||||
std::vector<std::shared_ptr<Installable>> installables)
|
||||
{
|
||||
if (mode != Build)
|
||||
|
@ -291,7 +291,7 @@ PathSet toStorePaths(ref<Store> store, RealiseMode mode,
|
|||
{
|
||||
PathSet outPaths;
|
||||
|
||||
for (auto & b : toBuildables(store, mode, installables))
|
||||
for (auto & b : build(store, mode, installables))
|
||||
for (auto & output : b.outputs)
|
||||
outPaths.insert(output.second);
|
||||
|
||||
|
|
Loading…
Reference in a new issue