aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/nar-accessor.cc
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2017-07-30 12:27:57 +0100
committerJörg Thalheim <joerg@thalheim.io>2017-07-30 12:32:45 +0100
commit2fd8f8bb99a2832b3684878c020ba47322e79332 (patch)
tree65a667fbc746f4ff8efcaca3c0a58565985f26a5 /src/libstore/nar-accessor.cc
parentc7654bc491d9ce7c1fbadecd7769418fa79a2060 (diff)
Replace Unicode quotes in user-facing strings by ASCII
Relevant RFC: NixOS/rfcs#4 $ ag -l | xargs sed -i -e "/\"/s/’/'/g;/\"/s/‘/'/g"
Diffstat (limited to 'src/libstore/nar-accessor.cc')
-rw-r--r--src/libstore/nar-accessor.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libstore/nar-accessor.cc b/src/libstore/nar-accessor.cc
index 82595e76a..2afdeb021 100644
--- a/src/libstore/nar-accessor.cc
+++ b/src/libstore/nar-accessor.cc
@@ -46,7 +46,7 @@ struct NarIndexer : ParseSink, StringSource
parents.push(&root);
} else {
if(parents.top()->type != FSAccessor::Type::tDirectory) {
- throw Error(format("NAR file missing parent directory of path ‘%1%’") % path);
+ throw Error(format("NAR file missing parent directory of path '%1%'") % path);
}
auto result = parents.top()->children.emplace(baseNameOf(path), std::move(member));
parents.push(&result.first->second);
@@ -120,7 +120,7 @@ struct NarIndexer : ParseSink, StringSource
NarMember& at(const Path & path) {
auto result = find(path);
if(result == nullptr) {
- throw Error(format("NAR file does not contain path ‘%1%’") % path);
+ throw Error(format("NAR file does not contain path '%1%'") % path);
}
return *result;
}
@@ -149,7 +149,7 @@ struct NarAccessor : public FSAccessor
auto i = indexer.at(path);
if (i.type != FSAccessor::Type::tDirectory)
- throw Error(format("path ‘%1%’ inside NAR file is not a directory") % path);
+ throw Error(format("path '%1%' inside NAR file is not a directory") % path);
StringSet res;
for(auto&& child : i.children) {
@@ -163,7 +163,7 @@ struct NarAccessor : public FSAccessor
{
auto i = indexer.at(path);
if (i.type != FSAccessor::Type::tRegular)
- throw Error(format("path ‘%1%’ inside NAR file is not a regular file") % path);
+ throw Error(format("path '%1%' inside NAR file is not a regular file") % path);
return std::string(*nar, i.start, i.size);
}
@@ -171,7 +171,7 @@ struct NarAccessor : public FSAccessor
{
auto i = indexer.at(path);
if (i.type != FSAccessor::Type::tSymlink)
- throw Error(format("path ‘%1%’ inside NAR file is not a symlink") % path);
+ throw Error(format("path '%1%' inside NAR file is not a symlink") % path);
return i.target;
}
};