23 lines
318 B
Text
23 lines
318 B
Text
|
#!/bin/sh -e
|
||
|
|
||
|
##
|
||
|
# variables
|
||
|
localbase=${LOCALBASE:-/usr/local}
|
||
|
git="${localbase}"/bin/git
|
||
|
gitdir=$1
|
||
|
commit=$2
|
||
|
mode=u=rwX,g=rX,o=
|
||
|
|
||
|
##
|
||
|
# functions
|
||
|
gitexec()
|
||
|
{
|
||
|
doas -n -u _srczap \
|
||
|
/bin/sh -c "umask ${mode}; ${git} ${1}"
|
||
|
}
|
||
|
|
||
|
##
|
||
|
# main
|
||
|
cd "${gitdir}"
|
||
|
gitexec "diff --name-only --diff-filter=D ${commit} HEAD"
|