daemon: Quote consistently within a string.
* nix/libstore/build.cc (DerivationGoal::registerOutput): ‘’ → `'.master
parent
e3b94eddf6
commit
0ace58b99c
|
@ -2422,7 +2422,7 @@ void DerivationGoal::registerOutputs()
|
||||||
if (pathExists(dst)) deletePath(dst);
|
if (pathExists(dst)) deletePath(dst);
|
||||||
if (rename(actualPath.c_str(), dst.c_str()))
|
if (rename(actualPath.c_str(), dst.c_str()))
|
||||||
throw SysError(format("renaming `%1%' to `%2%'") % actualPath % dst);
|
throw SysError(format("renaming `%1%' to `%2%'") % actualPath % dst);
|
||||||
throw Error(format("derivation `%1%' may not be deterministic: output `%2%' differs from ‘%3%’")
|
throw Error(format("derivation `%1%' may not be deterministic: output `%2%' differs from `%3%'")
|
||||||
% drvPath % path % dst);
|
% drvPath % path % dst);
|
||||||
} else
|
} else
|
||||||
throw Error(format("derivation `%1%' may not be deterministic: output `%2%' differs")
|
throw Error(format("derivation `%1%' may not be deterministic: output `%2%' differs")
|
||||||
|
|
Reference in New Issue