Codebase list virt-viewer / run/c1c1f3c0-39e8-4c78-9817-5ca72aecb7da/main build-aux / gen-authors.py
run/c1c1f3c0-39e8-4c78-9817-5ca72aecb7da/main

Tree @run/c1c1f3c0-39e8-4c78-9817-5ca72aecb7da/main (Download .tar.gz)

gen-authors.py @run/c1c1f3c0-39e8-4c78-9817-5ca72aecb7da/mainraw · history · blame

1
2
3
4
5
6
7
8
#!/usr/bin/env python3

import os

meson_source_root = os.environ['MESON_SOURCE_ROOT']

os.chdir(meson_source_root)
os.system('git log --pretty=format:"* %aN <%aE>" | sort -u')