From e9960e147bd9a57eee7dc06a86192d3f9e946499 Mon Sep 17 00:00:00 2001 From: K900 Date: Mon, 1 Apr 2024 08:57:50 +0300 Subject: [PATCH] libexpr/flake: don't purple the flake.lock diff Change-Id: I6f9471fb0ddd51fadb209ad970abd215238ba5c4 --- src/libexpr/flake/flake.cc | 4 ++-- 1 file 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 commitMessage = std::nullopt;