Skip to content

Commit fc0646b

Browse files
authored
Merge pull request #15 from VoltiusApp/docs/drop-no-quarantine
fix(landing): drop the --no-quarantine Homebrew hint
2 parents 46c886a + 4a41136 commit fc0646b

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

landing/app/components/DownloadCards.tsx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,14 +112,15 @@ export default function DownloadCards({ assets }: { assets: Asset[] }) {
112112
{p.platform === "macos" && (
113113
<div className="border-t border-white/5 pt-3 pb-1">
114114
<p className="text-[11px] text-zinc-500 mb-1.5 px-1">
115-
Recommended — Homebrew (skips Gatekeeper):
115+
Recommended — Homebrew (auto-updating)
116116
</p>
117-
<CopyCommand command="brew install --cask --no-quarantine voltiusapp/voltius/voltius" />
117+
<CopyCommand command="brew install --cask voltiusapp/voltius/voltius" />
118118
<p className="text-[11px] text-zinc-500 mt-2.5 mb-1.5 px-1">
119-
Downloaded the .dmg and macOS says it’s “damaged”? Clear the
120-
quarantine flag:
119+
Gatekeeper warns on first launch — Control-click Voltius in
120+
Applications and choose Open. If macOS calls it
121+
“damaged”, strip the quarantine metadata:
121122
</p>
122-
<CopyCommand command="xattr -cr /Applications/Voltius.app" />
123+
<CopyCommand command="xattr -dr com.apple.quarantine /Applications/Voltius.app" />
123124
</div>
124125
)}
125126
{p.platform === "android" && (

0 commit comments

Comments
 (0)