* Changed the extension for store expressions from ".nix" to ".store"

(following the Usenix paper).
This commit is contained in:
Eelco Dolstra 2004-01-12 10:44:48 +00:00
parent 46a71c857c
commit 4c4fe7a114
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ Path writeTerm(ATerm t, const string & suffix)
Hash h = hashTerm(t);
Path path = canonPath(nixStore + "/" +
(string) h + suffix + ".nix");
(string) h + suffix + ".store");
if (!isValidPath(path)) {
char * s = ATwriteToString(t);