diff --git a/scripts/git-patchtree.sh b/scripts/git-patchtree.sh index c5aea95..bf31005 100755 --- a/scripts/git-patchtree.sh +++ b/scripts/git-patchtree.sh @@ -34,5 +34,8 @@ cd firefox-$(cat version) && \ git add $(grep '+++' "../$1" | awk '{print $2}' | sed s/^b/./) && \ git commit -am "original" && \ patch -p1 -i "../$1" && \ - git commit -am "patch" + git commit -am "patch" && \ + echo "" && \ + echo "git-patchtree: Files under git control are: (git ls-tree -r HEAD --name-only)" && \ + git ls-tree -r HEAD --name-only cd ..