Ignore errors from diff2html

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2019-05-30 07:37:54 -07:00
parent e1208e1014
commit a4b7207ee3
1 changed files with 4 additions and 2 deletions

View File

@ -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 "----------------------------------------"