guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/06: daemon: Quote consistently within a string.


From: guix-commits
Subject: 04/06: daemon: Quote consistently within a string.
Date: Mon, 6 Jun 2022 21:32:33 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 0ace58b99c7292dd962bcd244f274f8033a7fce4
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jun 5 02:00:00 2022 +0200

    daemon: Quote consistently within a string.
    
    * nix/libstore/build.cc (DerivationGoal::registerOutput): ‘’ → `'.
---
 nix/libstore/build.cc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc
index 006e4ebbbb..10a6093bd5 100644
--- a/nix/libstore/build.cc
+++ b/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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]