diff --git a/Cantera/src/ct2ctml.cpp b/Cantera/src/ct2ctml.cpp index 65c941df7..e72e1adc2 100644 --- a/Cantera/src/ct2ctml.cpp +++ b/Cantera/src/ct2ctml.cpp @@ -120,7 +120,8 @@ namespace ctml { #ifdef WIN32 string cmd = pypath() + " " + path + "> ct2ctml.log 2>&1"; #else - string cmd = pypath() + " " + path + " &> ct2ctml.log"; + string cmd = "sleep " + sleep() + "; " + pypath() + + " " + path + " &> ct2ctml.log"; #endif #ifdef DEBUG_PATHS writelog("ct2ctml: executing the command " + cmd + "\n");