From 702db23ee04addb1466df0f42294a95c0d249981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Lepage=20Vall=C3=A9e?= Date: Mon, 5 Apr 2021 00:56:03 -0700 Subject: [PATCH] Debug doc issue (#3316) * doc: More debug messages The previous commit was inconclusive REVERT ME * doc: Another attempt at narrowing the boilerplate commit issue --- build-utils/travis-apidoc.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build-utils/travis-apidoc.sh b/build-utils/travis-apidoc.sh index 8ad0d990..5505f948 100755 --- a/build-utils/travis-apidoc.sh +++ b/build-utils/travis-apidoc.sh @@ -100,7 +100,10 @@ git commit -m "[relevant] $COMMIT_MSG" #FIXME mv .git ../doc #FIXME cd ../doc git add --all . -git commit -m "[boilerplate] $COMMIT_MSG" +echo BEGIN BEFORE boilerplate +BOILERPLATE_FAILED=0 +git commit -m "[boilerplate] $COMMIT_MSG" || export BOILERPLATE_FAILED=1 +echo END AFTER boilerplate $BOILERPLATE_FAILED # Reorder/swap commits, to have "relevant" after "boilerplate". # This makes it show up earlier in the Github interface etc.