aboutsummaryrefslogtreecommitdiff
path: root/src/nix-build/nix-build.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/nix-build/nix-build.cc')
-rwxr-xr-xsrc/nix-build/nix-build.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nix-build/nix-build.cc b/src/nix-build/nix-build.cc
index 769ca8cd0..b36933a0a 100755
--- a/src/nix-build/nix-build.cc
+++ b/src/nix-build/nix-build.cc
@@ -238,7 +238,7 @@ void mainWrapped(int argc, char * * argv)
});
if (packages && fromArgs)
- throw UsageError("‘-p’ and ‘-E’ are mutually exclusive");
+ throw UsageError("'-p' and '-E' are mutually exclusive");
auto store = openStore();
@@ -336,7 +336,7 @@ void mainWrapped(int argc, char * * argv)
auto drv = getDerivation(state, v, false);
if (!drv)
- throw Error("the ‘bashInteractive’ attribute in <nixpkgs> did not evaluate to a derivation");
+ throw Error("the 'bashInteractive' attribute in <nixpkgs> did not evaluate to a derivation");
pathsToBuild.insert(drv->queryDrvPath());
@@ -440,7 +440,7 @@ void mainWrapped(int argc, char * * argv)
execvp(shell.c_str(), argPtrs.data());
- throw SysError("executing shell ‘%s’", shell);
+ throw SysError("executing shell '%s'", shell);
}
else {
@@ -457,7 +457,7 @@ void mainWrapped(int argc, char * * argv)
auto outputName = drvInfo.queryOutputName();
if (outputName == "")
- throw Error("derivation ‘%s’ lacks an ‘outputName’ attribute", drvPath);
+ throw Error("derivation '%s' lacks an 'outputName' attribute", drvPath);
pathsToBuild.insert(drvPath + "!" + outputName);