diff options
| author | Mike McQuaid | 2017-08-11 17:23:11 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2017-08-11 17:23:11 +0100 |
| commit | 0e3f1ab27337338c19996a15e8f1e3b72ec270f1 (patch) | |
| tree | 6b33641bd055ce80ffd6ef5770ec556cadc59fa0 /Library/Homebrew/cmd | |
| parent | 93051b27d6886dae6df01544c86df579f21f6410 (diff) | |
| download | brew-0e3f1ab27337338c19996a15e8f1e3b72ec270f1.tar.bz2 | |
Note cases when pinned formulae get upgraded.
Fixes #3021.
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/pin.rb | 3 | ||||
| -rw-r--r-- | Library/Homebrew/cmd/unpin.rb | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/pin.rb b/Library/Homebrew/cmd/pin.rb index c5087f6d4..5a14f853c 100644 --- a/Library/Homebrew/cmd/pin.rb +++ b/Library/Homebrew/cmd/pin.rb @@ -1,6 +1,7 @@ #: * `pin` <formulae>: #: Pin the specified <formulae>, preventing them from being upgraded when -#: issuing the `brew upgrade` command. See also `unpin`. +#: issuing the `brew upgrade <formulae>` command (but can still be upgraded +#: as dependencies for other formulae). See also `unpin`. require "formula" diff --git a/Library/Homebrew/cmd/unpin.rb b/Library/Homebrew/cmd/unpin.rb index a669df1ec..e15a156ea 100644 --- a/Library/Homebrew/cmd/unpin.rb +++ b/Library/Homebrew/cmd/unpin.rb @@ -1,6 +1,6 @@ #: * `unpin` <formulae>: -#: Unpin <formulae>, allowing them to be upgraded by `brew upgrade`. See also -#: `pin`. +#: Unpin <formulae>, allowing them to be upgraded by `brew upgrade <formulae>`. +#: See also `pin`. require "formula" |
