Patch new cask documentation

This commit is contained in:
Tomy Hsieh 2024-01-10 22:01:12 +08:00
parent 0f0befc8e0
commit bb5d98358a
No known key found for this signature in database
GPG Key ID: 4E6AF0EEDD2205F8

View File

@ -251,6 +251,7 @@ Give it a shot with:
```bash ```bash
export HOMEBREW_NO_AUTO_UPDATE=1 export HOMEBREW_NO_AUTO_UPDATE=1
export HOMEBREW_NO_INSTALL_FROM_API=1
brew install my-new-cask brew install my-new-cask
``` ```
@ -386,8 +387,9 @@ cd "$(brew --repository)"/Library/Taps/homebrew/homebrew-cask
git checkout master git checkout master
``` ```
If earlier you set the variable `HOMEBREW_NO_AUTO_UPDATE` then clean it up with: If earlier you set the variable `HOMEBREW_NO_AUTO_UPDATE` and `HOMEBREW_NO_INSTALL_FROM_API` then clean it up with:
```bash ```bash
unset HOMEBREW_NO_AUTO_UPDATE unset HOMEBREW_NO_AUTO_UPDATE
unset HOMEBREW_NO_INSTALL_FROM_API
``` ```