brew doctor should not make changes #4248
-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Hmm. Right after submitting my post above, I tried
A subsequent As of now, I don't have a pattern where this does, or does not, repeat. |
Beta Was this translation helpful? Give feedback.
-
By default, |
Beta Was this translation helpful? Give feedback.
-
Ah, interesting that Is it a recent change that |
Beta Was this translation helpful? Give feedback.
brew doctor
performs a series of checks, and some of them require the list of formulae (e.g. checking if any formulae installed are deprecated). So when you runbrew doctor
, the list of formulae will be downloaded from the API. Other than that, no changes will be made to your system.brew update
updates Homebrew itself, and also fetches the list of formulae from API.By default,
brew
checks the API every 450 seconds (7.5 minutes; seeHOMEBREW_API_AUTO_UPDATE_SECS
). In other words, it won't check the API again if it already did so less than …