aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/storeexpr.cc
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2004-01-12 10:44:48 +0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2004-01-12 10:44:48 +0000
commit4c4fe7a114968a9c7accd86499f029314530f44c (patch)
tree6d51c83450f49c1848a1348ec17bca77583b134a /src/libstore/storeexpr.cc
parent46a71c857c617b5acbf3d1fdb8fb7e676a4881a2 (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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/storeexpr.cc b/src/libstore/storeexpr.cc
index e11cd5bfe..45b5af055 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);