您可以限制从自制软件版本更新软件包吗?
Can you restrict the update of a package from a verison in homebrew?
例如,如果一个包说 A
目前在非最新版本上说 1.2(比如,最新的是 1.5)。
每当我升级我的 brew 时,它都会升级所有的包,包括 A。有没有什么办法可以限制 A 不被升级而让另一个包被升级?
您可以使用 brew pin
命令。
来自 brew pin --help
:
brew pin formulae:
Pin the specified formulae, preventing them from being upgraded when
issuing the brew upgrade command. See also unpin.
例如,如果一个包说 A
目前在非最新版本上说 1.2(比如,最新的是 1.5)。
每当我升级我的 brew 时,它都会升级所有的包,包括 A。有没有什么办法可以限制 A 不被升级而让另一个包被升级?
您可以使用 brew pin
命令。
来自 brew pin --help
:
brew pin formulae: Pin the specified formulae, preventing them from being upgraded when issuing the brew upgrade command. See also unpin.