瀏覽代碼

Update diff generator for pull requests

pull/403/head
Dave Machado 7 年之前
committed by GitHub
父節點
當前提交
fa02f5cbcf
共有 1 個檔案被更改,包括 8 行新增2 行删除
  1. +8
    -2
      build/main.sh

+ 8
- 2
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"


Loading…
取消
儲存