From 81e021bd8aaabd264e8f97f316537db3a2b70dab Mon Sep 17 00:00:00 2001 From: maxice8 Date: Wed, 6 Mar 2019 23:15:03 -0300 Subject: [PATCH] common/travis/changed_templates.sh: try chroot-git then git --- common/travis/changed_templates.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/common/travis/changed_templates.sh b/common/travis/changed_templates.sh index 3565984a81..2f29c35cdf 100755 --- a/common/travis/changed_templates.sh +++ b/common/travis/changed_templates.sh @@ -2,5 +2,11 @@ # # 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 diff --name-status FETCH_HEAD...HEAD | grep "^[AM].*srcpkgs/[^/]*/template$" | cut -d/ -f 2 | tee /tmp/templates | sed "s/^/ /" >&2 +$GIT_CMD diff --name-status FETCH_HEAD...HEAD | grep "^[AM].*srcpkgs/[^/]*/template$" | cut -d/ -f 2 | tee /tmp/templates | sed "s/^/ /" >&2