Skip to content

Commit d06fab3

Browse files
committed
fix: make curl the primary install method on homepage
curl works on a fresh Mac (no Homebrew needed). Brew is now the alternative. Added "inspect first" option for security-conscious users.
1 parent 610dbb3 commit d06fab3

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/routes/+page.svelte

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
<div class="install-command-wrapper">
6767
<div class="install-command">
6868
<div class="install-prompt">$</div>
69-
<code>brew install openbootdotdev/tap/openboot</code>
70-
<button class="copy-btn" onclick={() => copyCommand('brew install openbootdotdev/tap/openboot', 'main')}>
69+
<code>curl -fsSL openboot.dev/install.sh | bash</code>
70+
<button class="copy-btn" onclick={() => copyCommand('curl -fsSL openboot.dev/install.sh | bash', 'main')}>
7171
{#if copied === 'main'}
7272
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
7373
<polyline points="20 6 9 17 4 12"/>
@@ -84,7 +84,10 @@
8484
</div>
8585
</div>
8686
<p class="install-alt">
87-
Alternative: <code>curl -fsSL openboot.dev/install.sh | bash</code>
87+
Want to inspect first? <code>curl -fsSL openboot.dev/install.sh -o install.sh && cat install.sh && bash install.sh</code>
88+
</p>
89+
<p class="install-alt">
90+
Already have Homebrew? <code>brew install openbootdotdev/tap/openboot</code>
8891
</p>
8992
</div>
9093
</div>

0 commit comments

Comments
 (0)