Skip to content

Commit e58bbd9

Browse files
committed
fix prompt path
1 parent 3d8e852 commit e58bbd9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/generate-docs-utils/ai/prompt-loader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
const fs = require('fs');
88
const path = require('path');
99

10-
const AI_PROMPT_PATH = path.join(__dirname, '../../docs-gen-prompts.md');
11-
const REPO_INSTRUCTIONS_PATH = path.join(__dirname, '../../copilot-instructions.md');
10+
const AI_PROMPT_PATH = path.join(__dirname, '../../../docs-gen-prompts.md');
11+
const REPO_INSTRUCTIONS_PATH = path.join(__dirname, '../../../copilot-instructions.md');
1212

1313
// Cache loaded prompts
1414
let cachedPrompts = null;

0 commit comments

Comments
 (0)