mirror of
https://github.com/NixOS/nix
synced 2025-06-30 15:48:00 +02:00
libflake: fix double quoting when updating flakes
This commit is contained in:
parent
559a2d1bc7
commit
3b0b2fd8d6
1 changed files with 3 additions and 3 deletions
|
@ -863,11 +863,11 @@ LockedFlake lockFlake(
|
|||
auto s = chomp(diff);
|
||||
if (lockFileExists) {
|
||||
if (s.empty())
|
||||
warn("updating lock file '%s'", outputLockFilePath);
|
||||
warn("updating lock file %s", outputLockFilePath);
|
||||
else
|
||||
warn("updating lock file '%s':\n%s", outputLockFilePath, s);
|
||||
warn("updating lock file %s:\n%s", outputLockFilePath, s);
|
||||
} else
|
||||
warn("creating lock file '%s': \n%s", outputLockFilePath, s);
|
||||
warn("creating lock file %s: \n%s", outputLockFilePath, s);
|
||||
|
||||
std::optional<std::string> commitMessage = std::nullopt;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue