Skip to content

Commit 3b0b2fd

Browse files
committed
libflake: fix double quoting when updating flakes
1 parent 559a2d1 commit 3b0b2fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/libflake/flake/flake.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -863,11 +863,11 @@ LockedFlake lockFlake(
863863
auto s = chomp(diff);
864864
if (lockFileExists) {
865865
if (s.empty())
866-
warn("updating lock file '%s'", outputLockFilePath);
866+
warn("updating lock file %s", outputLockFilePath);
867867
else
868-
warn("updating lock file '%s':\n%s", outputLockFilePath, s);
868+
warn("updating lock file %s:\n%s", outputLockFilePath, s);
869869
} else
870-
warn("creating lock file '%s': \n%s", outputLockFilePath, s);
870+
warn("creating lock file %s: \n%s", outputLockFilePath, s);
871871

872872
std::optional<std::string> commitMessage = std::nullopt;
873873

0 commit comments

Comments
 (0)