Implement new changelog generator.

This commit is contained in:
Matt Clay 2018-06-04 18:07:14 -07:00
parent cef4d862bc
commit 70c475da6c
7 changed files with 853 additions and 10 deletions

View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
import sys
import subprocess
def main():
paths = sys.argv[1:] or sys.stdin.read().splitlines()
cmd = ['packaging/release/changelogs/changelog.py', 'lint'] + paths
subprocess.check_call(cmd)
if __name__ == '__main__':
main()