Skip to content
Snippets Groups Projects
Commit 4c4fe7a1 authored by Eelco Dolstra's avatar Eelco Dolstra
Browse files

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

  (following the Usenix paper).
parent 46a71c85
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ Path writeTerm(ATerm t, const string & suffix) ...@@ -15,7 +15,7 @@ Path writeTerm(ATerm t, const string & suffix)
Hash h = hashTerm(t); Hash h = hashTerm(t);
Path path = canonPath(nixStore + "/" + Path path = canonPath(nixStore + "/" +
(string) h + suffix + ".nix"); (string) h + suffix + ".store");
if (!isValidPath(path)) { if (!isValidPath(path)) {
char * s = ATwriteToString(t); char * s = ATwriteToString(t);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment