From 36e78e9558064aa6d038418119c5f30b4a4d7cb0 Mon Sep 17 00:00:00 2001 From: Ruoyu Zhong Date: Fri, 17 Feb 2023 16:51:05 +0800 Subject: [PATCH] docs/FAQ: fix HOMEBREW_NO_INSTALL_FROM_API mention There is no `HOMEBREW_NO_INSTALL_WITH_API`; it should be `HOMEBREW_NO_INSTALL_FROM_API`. Signed-off-by: Ruoyu Zhong --- docs/FAQ.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/FAQ.md b/docs/FAQ.md index cbdaaf9281..bc9ec012f7 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -142,7 +142,7 @@ If all maintainer feedback has been addressed and all tests are passing, bump it Yes! It’s easy! Just `brew edit `. You don’t have to submit modifications back to `homebrew/core`, just edit the formula to what you personally need and `brew install `. As a bonus, `brew update` will merge your changes with upstream so you can still keep the formula up-to-date **with** your personal modifications! -Note that if you are editing a core formula or cask you must set `HOMEBREW_NO_INSTALL_WITH_API=1` before using `brew install` or `brew update` otherwise they will ignore your local changes and default to the API. +Note that if you are editing a core formula or cask you must set `HOMEBREW_NO_INSTALL_FROM_API=1` before using `brew install` or `brew update` otherwise they will ignore your local changes and default to the API. ## Can I make new formulae?