Skip to content

Commit 3753d6d

Browse files
hkielOpenModelica-Hudson
authored andcommitted
remove ulimit from call, it hangs the script
Belonging to [master]: - OpenModelica/OMCompiler#2728
1 parent 18e3271 commit 3753d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Examples/GenerateDoc.mos

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ py:=getInstallationDirectoryPath() + "/share/doc/omc/testmodels/generate_icons.p
8181
if getEnvironmentVar("GenerateDocTest") == "YES" then
8282
system("mkdir -p Icons");
8383
else
84-
commands:={"(ulimit -t 1200 ; python "+py+" --quiet --output-dir Icons "+typeNameString(cl)+" )" for cl in getClassNames(builtin=false)};getErrorString();
84+
commands:={"python "+py+" --quiet --output-dir Icons "+typeNameString(cl) for cl in getClassNames(builtin=false)};getErrorString();
8585
res:=system_parallel(commands);getErrorString();
8686
//system("rm -f *.json");getErrorString();
8787
end if;

0 commit comments

Comments
 (0)