From fa02f5cbcfc88b37f67bc545dc0515d9f8bbcd17 Mon Sep 17 00:00:00 2001 From: Dave Machado Date: Wed, 26 Jul 2017 11:02:27 -0400 Subject: [PATCH] Update diff generator for pull requests --- build/main.sh | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/build/main.sh b/build/main.sh index 32892dbd..5197cf85 100755 --- a/build/main.sh +++ b/build/main.sh @@ -2,9 +2,15 @@ FORMAT_FILE=../README.md if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then echo "running on Pull Request #$TRAVIS_PULL_REQUEST" - git show | egrep "\+" > additions.txt - echo "--ADDITIONS--" + DIFF_URL="https://patch-diff.githubusercontent.com/raw/toddmotto/public-apis/pull/$TRAVIS_PULL_REQUEST.diff" + curl https://patch-diff.githubusercontent.com/raw/toddmotto/public-apis/pull/398.diff > diff.txt + echo "------- BEGIN DIFF -------" + cat diff.txt + echo "-------- END DIFF --------" + cat diff.txt | egrep "\+" > additions.txt + echo "------ BEGIN ADDITIONS -----" cat additions.txt + echo "------- END ADDITIONS ------" LINK_FILE=additions.txt else echo "running on $TRAVIS_BRANCH branch"