diff options
| author | Mike McQuaid | 2017-04-02 10:14:33 +0100 | 
|---|---|---|
| committer | Mike McQuaid | 2017-04-02 10:14:58 +0100 | 
| commit | ae97a9c34eff45766be9af76bd79057c4acae77f (patch) | |
| tree | 085b4197075e71915bd07bdb90c040bf5454a7e0 | |
| parent | 566d3cb58b557df8ea6962653c43ba3fe995110f (diff) | |
| download | brew-ae97a9c34eff45766be9af76bd79057c4acae77f.tar.bz2 | |
docs: use long flags.
| -rw-r--r-- | docs/FAQ.md | 10 | ||||
| -rw-r--r-- | docs/Formula-Cookbook.md | 2 | 
2 files changed, 6 insertions, 6 deletions
| diff --git a/docs/FAQ.md b/docs/FAQ.md index 563a59ba0..4fe11530e 100644 --- a/docs/FAQ.md +++ b/docs/FAQ.md @@ -174,11 +174,11 @@ If it’s been a while, bump it with a “bump” comment. Sometimes we miss req  Yes! It’s easy! Just `brew edit <formula>`. You don’t have to submit modifications back to `homebrew/core`, just edit the formula as you personally need it 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!  ## Can I make new formulae? -Yes! It’s easy! Just `brew create URL`. Homebrew will then open the -formula in `EDITOR` so you can edit it, but it probably already -installs; try it: `brew install <formula>`. If you encounter any issues, -run the command with the `-d` switch like so: `brew install -d <formula>`, -which drops you into a debugging shell. +Yes! It’s easy! Just `brew create URL`. Homebrew will then open the formula in +`EDITOR` so you can edit it, but it probably already installs; try it: `brew +install <formula>`. If you encounter any issues, run the command with the +`--debug` switch like so: `brew install --debug <formula>`, which drops you +into a debugging shell.  If you want your new formula to be part of `homebrew/core` or want  to learn more about writing formulae, then please read the [Formula Cookbook](Formula-Cookbook.md). diff --git a/docs/Formula-Cookbook.md b/docs/Formula-Cookbook.md index aa3e5f23d..38874ddb0 100644 --- a/docs/Formula-Cookbook.md +++ b/docs/Formula-Cookbook.md @@ -90,7 +90,7 @@ Try to summarize from the [`homepage`](http://www.rubydoc.info/github/Homebrew/b  ### Check the build system  ```sh -brew install -i foo +brew install --interactive foo  ```  You’re now at a new prompt with the tarball extracted to a temporary sandbox. | 
