Skip to content

Commit e1e00b6

Browse files
authored
fix: correct cheatsheet path for npx/installed environments (#14)
1 parent 0c25de2 commit e1e00b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/tools/tool-handlers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ export class ToolHandlers {
177177

178178
const __filename = fileURLToPath(import.meta.url);
179179
const __dirname = path.dirname(__filename);
180-
const cheatsheetPath = path.join(__dirname, '../../Roam_Markdown_Cheatsheet.md');
180+
const cheatsheetPath = path.join(__dirname, '../Roam_Markdown_Cheatsheet.md');
181181

182182
try {
183183
let cheatsheetContent = await fs.promises.readFile(cheatsheetPath, 'utf-8');

0 commit comments

Comments
 (0)