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 af98472 commit bd39718Copy full SHA for bd39718
apps/execution-service/src/execution/execution.service.ts
@@ -35,7 +35,7 @@ export class ExecutionService {
35
return { success: false, output: 'Unsupported language' };
36
}
37
38
- const tempDir = path.join('/tmp', 'sandbox');
+ const tempDir = path.resolve(process.cwd(), 'sandbox');
39
if (!fs.existsSync(tempDir)) fs.mkdirSync(tempDir, { recursive: true });
40
41
const fileExtension = {
0 commit comments