From: ana Date: Thu, 30 Jun 2016 16:58:04 +0000 (+0300) Subject: Windows compatibility X-Git-Tag: V8_1_0a1~2 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=ad41678e4d910ac9c712fa868b04ce4d969cf815;p=modules%2Fkernel.git Windows compatibility --- diff --git a/src/Launcher/Launcher_Job_YACSFile.cxx b/src/Launcher/Launcher_Job_YACSFile.cxx index 82efa643f..388090351 100644 --- a/src/Launcher/Launcher_Job_YACSFile.cxx +++ b/src/Launcher/Launcher_Job_YACSFile.cxx @@ -44,7 +44,7 @@ Launcher::Job_YACSFile::addJobTypeSpecificScript(std::ofstream & launch_script_s launch_script_stream << _resource_definition.AppliPath << "/salome shell -p \"$appli_port\" -- driver -k\"$appli_port\" " << _job_file_name_complete; if (_dumpState > 0) launch_script_stream << " --dump=" << _dumpState; - if(not _yacsDriverOptions.empty()) + if(! _yacsDriverOptions.empty()) launch_script_stream << " " << _yacsDriverOptions ; launch_script_stream << " > logs/yacs_" << _launch_date << ".log 2>&1" << std::endl; }