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 ac2b839 commit 82d8a40Copy full SHA for 82d8a40
src/main/services/agent.ts
@@ -31,12 +31,12 @@ export interface TaskController {
31
currentRunId?: string;
32
}
33
34
-function getClaudeCliPath(): string {
+function _getClaudeCliPath(): string {
35
const appPath = app.getAppPath();
36
37
return app.isPackaged
38
- ? join(`${appPath}.unpacked`, ".vite/build/cli.js")
39
- : join(appPath, ".vite/build/cli.js")
+ ? join(`${appPath}.unpacked`, ".vite/build/cli.js")
+ : join(appPath, ".vite/build/cli.js");
40
41
42
function getClaudeCliPath(): string {
0 commit comments