mirror of
https://codeberg.org/kiss-community/kiss
synced 2024-11-04 14:05:41 -07:00
17 lines
407 B
Bash
Executable File
17 lines
407 B
Bash
Executable File
#!/bin/sh -ef
|
|
# Find the maintainer of a package
|
|
|
|
# Use the current directory as the package name if no package is given.
|
|
[ "$1" ] || {
|
|
export KISS_PATH="${PWD%/*}:$KISS_PATH"
|
|
set -- "${PWD##*/}"
|
|
}
|
|
|
|
kiss search "$@" | sort -u | while read -r repo; do cd "$repo"
|
|
m=$(git log -1 --format='%an <%ae>' -- version 2>/dev/null) ||:
|
|
|
|
[ "$m" ] || continue
|
|
|
|
printf '=> %s\n%s\n' "$PWD" "$m"
|
|
done
|