mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2025-02-18 16:17:18 +02:00
Merge pull request #5203 from NixOS/fix-invalid-lockfile-names
Don’t create lockfiles with an invalid path name
This commit is contained in:
commit
77ca5e951c
1 changed files with 1 additions and 1 deletions
|
@ -566,7 +566,7 @@ void DerivationGoal::tryToBuild()
|
||||||
lockFiles.insert(worker.store.Store::toRealPath(*i.second.second));
|
lockFiles.insert(worker.store.Store::toRealPath(*i.second.second));
|
||||||
else
|
else
|
||||||
lockFiles.insert(
|
lockFiles.insert(
|
||||||
worker.store.Store::toRealPath(drvPath) + "!" + i.first
|
worker.store.Store::toRealPath(drvPath) + "." + i.first
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue