We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0645a2c commit 8f32f90Copy full SHA for 8f32f90
src/ragService.ts
@@ -72,10 +72,10 @@ class RagService {
72
73
// Check if rag.exe exists
74
try {
75
- await fs.access(exePath, fs.constants.F_OK);
76
-
77
// Download MD5 from GitHub
78
remoteMd5 = await this.downloadText('https://github.com/yefansky/CodeReDesign/releases/download/latest/md5.txt');
+
+ await fs.access(exePath, fs.constants.F_OK);
79
80
// Calculate local rag.exe MD5
81
const localMd5 = await this.calculateFileMd5(exePath);
0 commit comments