2015-04-10 15:40:02 +02:00
|
|
|
#!/bin/sh
|
2015-04-10 00:53:46 +02:00
|
|
|
#
|
|
|
|
# changed_templates.sh
|
|
|
|
|
2019-03-07 03:15:03 +01:00
|
|
|
if command -v chroot-git >/dev/null 2>&1; then
|
|
|
|
GIT_CMD=$(command -v chroot-git)
|
|
|
|
elif command -v git >/dev/null 2>&1; then
|
|
|
|
GIT_CMD=$(command -v git)
|
|
|
|
fi
|
|
|
|
|
2015-04-10 00:53:46 +02:00
|
|
|
/bin/echo -e '\x1b[32mChanged packages:\x1b[0m'
|
2020-06-10 17:54:08 +02:00
|
|
|
$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM \
|
|
|
|
"$(git merge-base FETCH_HEAD HEAD)" HEAD \
|
|
|
|
-- 'srcpkgs/*/template' |
|
2020-05-23 15:40:09 +02:00
|
|
|
cut -d/ -f 2 |
|
|
|
|
tee /tmp/templates |
|
|
|
|
sed "s/^/ /" >&2
|