(value)
| 366 | return invoke_lein(['with-profile', profile, 'update-in', key, 'clojure.core/prn', '--', 'version'], jdk_path=jdk_path) |
| 367 | |
| 368 | def parse_lein_string(value): |
| 369 | for line in value.splitlines(): |
| 370 | line = line.strip() |
| 371 | if line.startswith('"'): |
| 372 | return json.loads(line) |
| 373 | raise Exception("Unable to parse Leiningen string from output:\n%s" % value) |
| 374 | |
| 375 | def parse_lein_regexes(value): |
| 376 | for line in value.splitlines(): |
no outgoing calls
no test coverage detected