fix(utils): cleanup timeout reason
This commit is contained in:
parent
5991670ef2
commit
fea9835436
1 changed files with 2 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ local function find_gnu_time()
|
||||||
|
|
||||||
_time_cached = true
|
_time_cached = true
|
||||||
_time_path = nil
|
_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
|
return _time_path, _time_reason
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -214,7 +214,7 @@ local function find_gnu_timeout()
|
||||||
|
|
||||||
_timeout_cached = true
|
_timeout_cached = true
|
||||||
_timeout_path = nil
|
_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
|
return _timeout_path, _timeout_reason
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue