aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/derivations.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstore/derivations.cc')
-rw-r--r--src/libstore/derivations.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libstore/derivations.cc b/src/libstore/derivations.cc
index 48c0837ff..a0a0d78b7 100644
--- a/src/libstore/derivations.cc
+++ b/src/libstore/derivations.cc
@@ -21,7 +21,7 @@ void DerivationOutput::parseHashInfo(bool & recursive, Hash & hash) const
HashType hashType = parseHashType(algo);
if (hashType == htUnknown)
- throw Error(format("unknown hash algorithm ‘%1%’") % algo);
+ throw Error(format("unknown hash algorithm '%1%'") % algo);
hash = Hash(this->hash, hashType);
}
@@ -31,7 +31,7 @@ Path BasicDerivation::findOutput(const string & id) const
{
auto i = outputs.find(id);
if (i == outputs.end())
- throw Error(format("derivation has no output ‘%1%’") % id);
+ throw Error(format("derivation has no output '%1%'") % id);
return i->second.path;
}
@@ -94,7 +94,7 @@ static void expect(std::istream & str, const string & s)
char s2[s.size()];
str.read(s2, s.size());
if (string(s2, s.size()) != s)
- throw FormatError(format("expected string ‘%1%’") % s);
+ throw FormatError(format("expected string '%1%'") % s);
}
@@ -121,7 +121,7 @@ static Path parsePath(std::istream & str)
{
string s = parseString(str);
if (s.size() == 0 || s[0] != '/')
- throw FormatError(format("bad path ‘%1%’ in derivation") % s);
+ throw FormatError(format("bad path '%1%' in derivation") % s);
return s;
}
@@ -204,7 +204,7 @@ Derivation readDerivation(const Path & drvPath)
try {
return parseDerivation(readFile(drvPath));
} catch (FormatError & e) {
- throw Error(format("error parsing derivation ‘%1%’: %2%") % drvPath % e.msg());
+ throw Error(format("error parsing derivation '%1%': %2%") % drvPath % e.msg());
}
}
@@ -217,7 +217,7 @@ Derivation Store::derivationFromPath(const Path & drvPath)
try {
return parseDerivation(accessor->readFile(drvPath));
} catch (FormatError & e) {
- throw Error(format("error parsing derivation ‘%1%’: %2%") % drvPath % e.msg());
+ throw Error(format("error parsing derivation '%1%': %2%") % drvPath % e.msg());
}
}