Skip to content

Commit 83502fd

Browse files
committed
Avoid failing if site docs are already up-to-date
1 parent 1b12ef8 commit 83502fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ site-docs: site
3232
for f in site/manual/gh*.md; do sed -i.bak -e '/^### SEE ALSO/,$$d' "$$f"; done
3333
rm -f site/manual/*.bak
3434
git -C site add 'manual/gh*.md'
35-
git -C site commit -m 'update help docs'
35+
git -C site commit -m 'update help docs' || true
3636
.PHONY: site-docs
3737

3838
site-publish: site-docs

0 commit comments

Comments
 (0)