1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 08:31:16 +02:00

Merge branch 'fix/dry-run-partially' of https://github.com/dtzWill/nix

This commit is contained in:
Eelco Dolstra 2018-02-22 12:18:20 +01:00
commit de4c03d201
No known key found for this signature in database
GPG key ID: 8170B4726D7198DE
3 changed files with 55 additions and 0 deletions

View file

@ -52,6 +52,8 @@ struct CmdBuild : MixDryRun, InstallablesCommand
{
auto buildables = build(store, dryRun ? DryRun : Build, installables);
if (dryRun) return;
for (size_t i = 0; i < buildables.size(); ++i) {
auto & b(buildables[i]);