diff --git a/common/travis/changed_templates.sh b/common/travis/changed_templates.sh index 2f29c35cdf..d6a66107bf 100755 --- a/common/travis/changed_templates.sh +++ b/common/travis/changed_templates.sh @@ -9,4 +9,7 @@ elif command -v git >/dev/null 2>&1; then fi /bin/echo -e '\x1b[32mChanged packages:\x1b[0m' -$GIT_CMD diff --name-status FETCH_HEAD...HEAD | grep "^[AM].*srcpkgs/[^/]*/template$" | cut -d/ -f 2 | tee /tmp/templates | sed "s/^/ /" >&2 +$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM FETCH_HEAD HEAD -- 'srcpkgs/*/template' | + cut -d/ -f 2 | + tee /tmp/templates | + sed "s/^/ /" >&2