mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-04 22:15:37 -07:00
10 lines
229 B
Bash
Executable File
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
|