mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-15 00:55:17 +00:00
9 lines
175 B
Python
9 lines
175 B
Python
|
#!/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')
|