refactor(remoteProcess): remove debugging statement from transfer_file_to_server function to clean up code

This commit is contained in:
Andras Bacsai
2025-09-09 08:56:16 +02:00
parent 45ca76ed1c
commit ccc9ceb734

View File

@@ -156,7 +156,6 @@ function transfer_file_to_server(string $content, string $server_path, Server $s
return instant_scp($temp_file, $server_path, $server, $throwError);
} finally {
ray($temp_file);
// Always cleanup local temp file
if (file_exists($temp_file)) {
unlink($temp_file);