Skip to content
This repository has been archived by the owner on May 18, 2019. It is now read-only.

Commit

Permalink
remove ulimit from call, it hangs the script
Browse files Browse the repository at this point in the history
Belonging to [master]:
  - #2728
  • Loading branch information
hkiel authored and OpenModelica-Hudson committed Oct 18, 2018
1 parent 18e3271 commit 3753d6d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/GenerateDoc.mos
Expand Up @@ -81,7 +81,7 @@ py:=getInstallationDirectoryPath() + "/share/doc/omc/testmodels/generate_icons.p
if getEnvironmentVar("GenerateDocTest") == "YES" then
system("mkdir -p Icons");
else
commands:={"(ulimit -t 1200 ; python "+py+" --quiet --output-dir Icons "+typeNameString(cl)+" )" for cl in getClassNames(builtin=false)};getErrorString();
commands:={"python "+py+" --quiet --output-dir Icons "+typeNameString(cl) for cl in getClassNames(builtin=false)};getErrorString();
res:=system_parallel(commands);getErrorString();
//system("rm -f *.json");getErrorString();
end if;
Expand Down

0 comments on commit 3753d6d

Please sign in to comment.