Salome HOME
bug on ccrt + eris
[tools/libbatch.git] / src / Core / Batch_CommunicationProtocol.cxx
index 82f5b4f566bc74188a78e4b0fbdeda7962715a10..8a3ef6ada2b5c7591028c54e8208c5305b1ba94a 100644 (file)
@@ -151,11 +151,7 @@ namespace Batch {
       // if the argument contains spaces, we surround it with simple quotes (Linux)
       // or double quotes (Windows)
       if (commandArgs[i].find(' ') != string::npos) {
-#ifdef WIN32
         commandStr += string("\"") + commandArgs[i] + "\"";
-#else
-        commandStr += string("\'") + commandArgs[i] + "\'";
-#endif
       } else {
         commandStr += commandArgs[i];
       }