From a4b7207ee36edb6c6fea067c5e9fac9cf3835707 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Thu, 30 May 2019 07:37:54 -0700 Subject: [PATCH] Ignore errors from diff2html Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- .github/kokoro/db-full.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/kokoro/db-full.sh b/.github/kokoro/db-full.sh index 31c097b4..5cef9d64 100755 --- a/.github/kokoro/db-full.sh +++ b/.github/kokoro/db-full.sh @@ -148,12 +148,14 @@ echo "----------------------------------------" # Pretty HTML file version diff2html --summary=open --file diff.html --format html \ -- \ - --irreversible-delete --find-renames --find-copies --ignore-all-space origin/master + --irreversible-delete --find-renames --find-copies \ + --ignore-all-space origin/master || true # Programmatic JSON version diff2html --file diff.json --format json \ -- \ - --irreversible-delete --find-renames --find-copies --ignore-all-space origin/master + --irreversible-delete --find-renames --find-copies \ + --ignore-all-space origin/master || true ) echo "----------------------------------------"