mirror of
https://github.com/NixOS/nix.git
synced 2024-11-27 09:12:40 +00:00
exportReferencesGraph: Fix support for non-top-level store paths
Fixes #3471.
This commit is contained in:
parent
c385535c18
commit
7c9ece5dca
@ -2041,7 +2041,10 @@ void DerivationGoal::startBuilder()
|
||||
if (!std::regex_match(fileName, regex))
|
||||
throw Error("invalid file name '%s' in 'exportReferencesGraph'", fileName);
|
||||
|
||||
auto storePath = worker.store.parseStorePath(*i++);
|
||||
auto storePathS = *i++;
|
||||
if (!worker.store.isInStore(storePathS))
|
||||
throw BuildError("'exportReferencesGraph' contains a non-store path '%1%'", storePathS);
|
||||
auto storePath = worker.store.parseStorePath(worker.store.toStorePath(storePathS));
|
||||
|
||||
/* Write closure info to <fileName>. */
|
||||
writeFile(tmpDir + "/" + fileName,
|
||||
|
Loading…
Reference in New Issue
Block a user