Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update installation instruction to reflect Homebrew changes #2831

Merged
merged 4 commits into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/InstallTabs/MacOSPanel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ export const PureMacOSPanel = (): JSX.Element => {
<span className="install-text-command">brew tap </span>homebrew/cask-versions
<br />
<span className="install__text__no-select">$</span>
<span className="install-text-command">brew install --cask </span>temurin8
<span className="install-text-command">brew install --cask </span>temurin@8
<br />
<span className="install__text__no-select">$</span>
<span className="install-text-command">brew install --cask </span>temurin{mostRecentLts}
<span className="install-text-command">brew install --cask </span>temurin@{mostRecentLts}
</ShellBox>
<br />
<br />
Expand All @@ -56,4 +56,4 @@ const MacOSPanel = (): JSX.Element => {
return <PureMacOSPanel />;
};

export default MacOSPanel;
export default MacOSPanel;
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@ exports[`Tests for InstallTabs component > renders correctly for macOS 1`] = `
>
brew install --cask
</span>
temurin8
temurin@8
<br />
<span
class="install__text__no-select"
Expand All @@ -766,7 +766,7 @@ exports[`Tests for InstallTabs component > renders correctly for macOS 1`] = `
>
brew install --cask
</span>
temurin
temurin@
1
</code>
</pre>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ exports[`Tests for MacOSPanel component > renders correctly 1`] = `
>
brew install --cask
</span>
temurin8
temurin@8
<br />
<span
class="install__text__no-select"
Expand All @@ -81,7 +81,7 @@ exports[`Tests for MacOSPanel component > renders correctly 1`] = `
>
brew install --cask
</span>
temurin
temurin@
1
</code>
</pre>
Expand Down
Loading