Browse Source
daemon: Quote consistently within a string.
* nix/libstore/build.cc (DerivationGoal::registerOutput): ‘’ → `'.
wip-postfix
Tobias Geerinckx-Rice
2 months ago
No known key found for this signature in database
GPG Key ID: DB0FF884F556D79
1 changed files with
1 additions and
1 deletions
-
nix/libstore/build.cc
|
|
@ -2422,7 +2422,7 @@ void DerivationGoal::registerOutputs() |
|
|
|
if (pathExists(dst)) deletePath(dst); |
|
|
|
if (rename(actualPath.c_str(), dst.c_str())) |
|
|
|
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); |
|
|
|
} else |
|
|
|
throw Error(format("derivation `%1%' may not be deterministic: output `%2%' differs") |
|
|
|