From b881f32687 (travis/changed_templates: filter by git itself, 2020-05-23), we replaced git-diff(1) with git-diff-tree(1). The change wasn't equivalence, though. We used to compare between merge-base of FETCH_HEAD and HEAD. From that commit, we started to compare FETCH_HEAD and HEAD instead. Fix them by changing left tree-ish to the merge-base.
18 lines
432 B
Bash
Executable File
18 lines
432 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# changed_templates.sh
|
|
|
|
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
|
|
|
|
/bin/echo -e '\x1b[32mChanged packages:\x1b[0m'
|
|
$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM \
|
|
"$(git merge-base FETCH_HEAD HEAD)" HEAD \
|
|
-- 'srcpkgs/*/template' |
|
|
cut -d/ -f 2 |
|
|
tee /tmp/templates |
|
|
sed "s/^/ /" >&2
|