(workingDir, project, outPath, plug_paths = None)
| 28 | ] |
| 29 | |
| 30 | def mgen_compile(workingDir, project, outPath, plug_paths = None): |
| 31 | if not plug_paths: plug_paths = pluginPaths |
| 32 | check_call(mgen_cmd + project + ' plugin_paths="' + plug_paths + '" output_path="' + outPath + '" use_env_vars="false"', cwd=workingDir, shell=True) |
| 33 | |
| 34 | def getCommitDateString(): |
| 35 | return os.popen("git show -s --format=%ci").read().rstrip() |
no outgoing calls
no test coverage detected