mirror of
https://github.com/NixOS/nix
synced 2025-07-06 05:01:48 +02:00
parent
14d82baba4
commit
54bf5ba422
11 changed files with 67 additions and 43 deletions
|
@ -128,7 +128,7 @@ static void opRealise(Strings opFlags, Strings opArgs)
|
|||
|
||||
std::vector<StorePathWithOutputs> paths;
|
||||
for (auto & i : opArgs)
|
||||
paths.push_back(store->parseDrvPathWithOutputs(i));
|
||||
paths.push_back(store->followLinksToStorePathWithOutputs(i));
|
||||
|
||||
unsigned long long downloadSize, narSize;
|
||||
StorePathSet willBuild, willSubstitute, unknown;
|
||||
|
@ -893,7 +893,7 @@ static void opServe(Strings opFlags, Strings opArgs)
|
|||
|
||||
std::vector<StorePathWithOutputs> paths;
|
||||
for (auto & s : readStrings<Strings>(in))
|
||||
paths.emplace_back(store->parseDrvPathWithOutputs(s));
|
||||
paths.emplace_back(store->parsePathWithOutputs(s));
|
||||
|
||||
getBuildSettings();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue