diff options
author | K900 <me@0upti.me> | 2024-04-01 08:57:50 +0300 |
---|---|---|
committer | K900 <me@0upti.me> | 2024-04-01 08:57:50 +0300 |
commit | e9960e147bd9a57eee7dc06a86192d3f9e946499 (patch) | |
tree | bf1126cd7c04fd213c93e0e51588c218cae0971b /src/libexpr | |
parent | 9adefa9de4f9b96e21088d7a1c9c3c8cca20f9c8 (diff) |
libexpr/flake: don't purple the flake.lock diff
Change-Id: I6f9471fb0ddd51fadb209ad970abd215238ba5c4
Diffstat (limited to 'src/libexpr')
-rw-r--r-- | src/libexpr/flake/flake.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libexpr/flake/flake.cc b/src/libexpr/flake/flake.cc index 2c51f8752..e573e53b4 100644 --- a/src/libexpr/flake/flake.cc +++ b/src/libexpr/flake/flake.cc @@ -659,9 +659,9 @@ LockedFlake lockFlake( if (s.empty()) warn("updating lock file '%s'", outputLockFilePath); else - warn("updating lock file '%s':\n%s", outputLockFilePath, s); + warn("updating lock file '%s':\n%s", outputLockFilePath, Uncolored(s)); } else - warn("creating lock file '%s':\n%s", outputLockFilePath, s); + warn("creating lock file '%s':\n%s", outputLockFilePath, Uncolored(s)); std::optional<std::string> commitMessage = std::nullopt; |