Skip to content

Commit 6dedc27

Browse files
committed
fix: wrap quick diagnosis and guiding principle in paragraphs for better readability
Signed-off-by: Lee Calcote <lee.calcote@layer5.io>
1 parent 2ea5849 commit 6dedc27

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

  • src/collections/blog/2026/03-09-why-claude-code-cant-find-your-tools

src/collections/blog/2026/03-09-why-claude-code-cant-find-your-tools/index.mdx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,6 @@ featured: false
1616
published: true
1717
resource: true
1818
---
19-
20-
2119
import { BlogWrapper } from "../../Blog.style.js";
2220
import { Link } from "gatsby";
2321
import Blockquote from "../../../../reusecore/Blockquote";
@@ -165,7 +163,9 @@ zsh -i -c 'which node'`}</code>
165163
</p>
166164

167165
<div className="note">
168-
<strong>Quick diagnosis:</strong> Run <code>zsh -c 'which gh'</code> (no <code>-i</code> flag). If this fails but <code>which gh</code> in your normal terminal works, your PATH is only set in <code>{"~/.zshrc"}</code>. Move the relevant exports to <code>{"~/.zshenv"}</code> to fix it.
166+
<p>
167+
<strong>Quick diagnosis:</strong> Run <code>zsh -c 'which gh'</code> (no <code>-i</code> flag). If this fails but <code>which gh</code> in your normal terminal works, your PATH is only set in <code>{"~/.zshrc"}</code>. Move the relevant exports to <code>{"~/.zshenv"}</code> to fix it.
168+
</p>
169169
</div>
170170

171171
<h2>The Fix: Move PATH Exports to <code>{"~/.zshenv"}</code></h2>
@@ -233,7 +233,9 @@ zsh -c 'which node'`}</code>
233233
</p>
234234

235235
<div className="tip">
236-
<strong>Guiding principle:</strong> If it is an environment variable that a program needs to find another program, it belongs in <code>{"~/.zshenv"}</code>. If it is a user-facing customization for your interactive terminal experience, it belongs in <code>{"~/.zshrc"}</code>.
236+
<p>
237+
<strong>Guiding principle:</strong> If it is an environment variable that a program needs to find another program, it belongs in <code>{"~/.zshenv"}</code>. If it is a user-facing customization for your interactive terminal experience, it belongs in <code>{"~/.zshrc"}</code>.
238+
</p>
237239

238240
<p><strong>Keep in <code>{"~/.zshenv"}</code>:</strong></p>
239241
<ul>

0 commit comments

Comments
 (0)