From fea9835436f96365393fbfa243df757dbf32de39 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Fri, 3 Oct 2025 13:20:42 -0400 Subject: [PATCH] fix(utils): cleanup timeout reason --- lua/cp/utils.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lua/cp/utils.lua b/lua/cp/utils.lua index c3ff310..5fa7c73 100644 --- a/lua/cp/utils.lua +++ b/lua/cp/utils.lua @@ -57,7 +57,7 @@ local function find_gnu_time() _time_cached = true _time_path = nil - _time_reason = 'GNU time not found (install `time` on Linux or `brew install coreutils` on macOS)' + _time_reason = 'GNU time not found' return _time_path, _time_reason end @@ -214,7 +214,7 @@ local function find_gnu_timeout() _timeout_cached = true _timeout_path = nil - _timeout_reason = 'GNU timeout not found (install `coreutils`; macOS: `brew install coreutils`)' + _timeout_reason = 'GNU timeout not found' return _timeout_path, _timeout_reason end