mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
Merge pull request #12358 from soapy1/update-brew-install-instructions
Add package manager override for brew install instructions
This commit is contained in:
commit
2dc846f9a2
1 changed files with 18 additions and 0 deletions
|
|
@ -46,6 +46,24 @@ export default function DownloadsPage(staticProps) {
|
|||
<a>» Download VMware Utility</a>
|
||||
</Link>
|
||||
}
|
||||
packageManagerOverrides={[
|
||||
{
|
||||
label: 'Homebrew',
|
||||
commands: [
|
||||
`brew tap hashicorp/tap`,
|
||||
`brew install ${productSlug}`,
|
||||
],
|
||||
os: 'darwin',
|
||||
},
|
||||
{
|
||||
label: 'Homebrew',
|
||||
commands: [
|
||||
`brew tap hashicorp/tap`,
|
||||
`brew install ${productSlug}`,
|
||||
],
|
||||
os: 'linux',
|
||||
},
|
||||
]}
|
||||
{...staticProps}
|
||||
/>
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue