()
| 38 | print(" --verbose Show extra console output") |
| 39 | |
| 40 | def get_git_commit_hash(): |
| 41 | return subprocess.check_output(['git', 'rev-parse', 'HEAD']).decode('ascii').strip() |
| 42 | |
| 43 | def main(in_path: str, out_path: str, version: str): |
| 44 | if not os.path.exists(in_path): |