Skip to content

Commit

Permalink
还是生成到log目录中
Browse files Browse the repository at this point in the history
  • Loading branch information
sumneko committed Jul 22, 2024
1 parent 0b419ef commit 33dc6ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/console/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function setPort(port: number) {
if (!env.scriptUri) {
return;
}
tools.fs.writeFile(env.scriptUri, '.log/helper_port.lua', `return ${port}`);
tools.fs.writeFile(env.scriptUri, 'log/helper_port.lua', `return ${port}`);
}

let server: ConsoleServer | undefined;
Expand Down
2 changes: 1 addition & 1 deletion src/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function init(context: vscode.ExtensionContext) {
if (!env.scriptUri) {
return;
}
tools.fs.writeFile(env.scriptUri, '.log/debugger_path.lua', `return [[${debuggerContext.extensionUri.fsPath}]]`);
tools.fs.writeFile(env.scriptUri, 'log/debugger_path.lua', `return [[${debuggerContext.extensionUri.fsPath}]]`);
}

update_debugger_path();
Expand Down

0 comments on commit 33dc6ac

Please sign in to comment.