Skip to content

Commit bd39718

Browse files
committed
fix: trying to fix
1 parent af98472 commit bd39718

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/execution-service/src/execution/execution.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export class ExecutionService {
3535
return { success: false, output: 'Unsupported language' };
3636
}
3737

38-
const tempDir = path.join('/tmp', 'sandbox');
38+
const tempDir = path.resolve(process.cwd(), 'sandbox');
3939
if (!fs.existsSync(tempDir)) fs.mkdirSync(tempDir, { recursive: true });
4040

4141
const fileExtension = {

0 commit comments

Comments
 (0)