(args, jdk_path=None)
| 353 | return run.command(['env', 'JAVA_CMD=%s/bin/java' % jdk_path, 'LEIN_HOME=build/lein', 'bash', './scripts/lein'] + args, stdout=True, **kwargs) |
| 354 | |
| 355 | def invoke_zip_parallel(args, jdk_path=None): |
| 356 | return invoke_lein(['with-profile', 'zip-parallel', 'run', '-m', 'editor.zip-parallel'] + args, jdk_path=jdk_path) |
| 357 | |
| 358 | def read_merged_project_value(profile, key, jdk_path=None): |
| 359 | """Print a value from the Leiningen project after profile merging. |
no test coverage detected