From 76409d4542bef2a4388ab83cc251b8c521eff47b Mon Sep 17 00:00:00 2001 From: Ovidiu Mircescu Date: Fri, 19 Jan 2018 11:06:11 +0100 Subject: [PATCH] Useless output redirection for command jobs [EDF 14663]. --- src/Launcher/Launcher_Job_Command.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Launcher/Launcher_Job_Command.cxx b/src/Launcher/Launcher_Job_Command.cxx index bdb0f2ec4..9a4fdf0f8 100644 --- a/src/Launcher/Launcher_Job_Command.cxx +++ b/src/Launcher/Launcher_Job_Command.cxx @@ -72,7 +72,7 @@ Launcher::Job_Command::buildCommandScript(Batch::Parametre params, std::string l std::string::size_type last = _env_file.find_last_of("/"); launch_script_stream << ". ./" << _env_file.substr(last+1) << std::endl; } - launch_script_stream << "./" << _job_file_name_complete << " > " << work_directory <<"/logs/command_" << launch_date << ".log 2>&1" << std::endl; + launch_script_stream << "./" << _job_file_name_complete << std::endl; // Return launch_script_stream.flush(); -- 2.39.2