diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-01-12T10·44+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2004-01-12T10·44+0000 |
commit | 4c4fe7a114968a9c7accd86499f029314530f44c (patch) | |
tree | 6d51c83450f49c1848a1348ec17bca77583b134a /src/libstore/storeexpr.cc | |
parent | 46a71c857c617b5acbf3d1fdb8fb7e676a4881a2 (diff) |
* Changed the extension for store expressions from ".nix" to ".store"
(following the Usenix paper).
Diffstat (limited to 'src/libstore/storeexpr.cc')
-rw-r--r-- | src/libstore/storeexpr.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/storeexpr.cc b/src/libstore/storeexpr.cc index e11cd5bfe55b..45b5af055a9b 100644 --- a/src/libstore/storeexpr.cc +++ b/src/libstore/storeexpr.cc @@ -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); |