diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2022-11-29 14:01:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-29 14:01:42 +0100 |
commit | fbc53e97edfff092e6a4c1b7f0546137fdb6238c (patch) | |
tree | cd45faa2f2b75065689fcc0d72e7e705dfea1257 /src/libcmd | |
parent | f904f6a66f2fea3d6a9498dd47284aa8c16fb26d (diff) | |
parent | 4f762e2b023fd451fdbab0de8d6394dd7201640d (diff) |
Merge pull request #3600 from NixOS/auto-uid-allocation
Automatic UID allocation
Diffstat (limited to 'src/libcmd')
-rw-r--r-- | src/libcmd/installables.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcmd/installables.cc b/src/libcmd/installables.cc index d6e62e775..dbe4a449d 100644 --- a/src/libcmd/installables.cc +++ b/src/libcmd/installables.cc @@ -931,7 +931,7 @@ std::vector<std::pair<std::shared_ptr<Installable>, BuiltPathWithResult>> Instal case Realise::Outputs: { if (settings.printMissing) - printMissing(store, pathsToBuild, lvlInfo); + printMissing(store, pathsToBuild, lvlInfo); for (auto & buildResult : store->buildPathsWithResults(pathsToBuild, bMode, evalStore)) { if (!buildResult.success()) |