2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-11-04 22:15:37 -07:00
repo/.github/workflows/maintainers
2020-01-23 18:34:00 +02:00

10 lines
229 B
Bash
Executable File

#!/bin/sh -e
for file in */*/version; do
pkg=${file%/*}
# author=$(git log -1 --format="tformat:%an %ae" "$file")
author="Dylan Araps dylan.araps@gmail.com"
printf '%s\t%s\n' "$pkg" "$author"
done > maintainers