We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 559a2d1 commit 3b0b2fdCopy full SHA for 3b0b2fd
src/libflake/flake/flake.cc
@@ -863,11 +863,11 @@ LockedFlake lockFlake(
863
auto s = chomp(diff);
864
if (lockFileExists) {
865
if (s.empty())
866
- warn("updating lock file '%s'", outputLockFilePath);
+ warn("updating lock file %s", outputLockFilePath);
867
else
868
- warn("updating lock file '%s':\n%s", outputLockFilePath, s);
+ warn("updating lock file %s:\n%s", outputLockFilePath, s);
869
} else
870
- warn("creating lock file '%s': \n%s", outputLockFilePath, s);
+ warn("creating lock file %s: \n%s", outputLockFilePath, s);
871
872
std::optional<std::string> commitMessage = std::nullopt;
873
0 commit comments