From 024f994d9e9e12d71fee298c3c769ca2db6bd683 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Thu, 14 Jan 2016 14:51:16 +0100 Subject: [PATCH] _build/deploy-phpdoc-branch.sh: Don't forget to commit phpDocs cache --- _build/deploy-phpdoc-branch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_build/deploy-phpdoc-branch.sh b/_build/deploy-phpdoc-branch.sh index 16c3178..373a6e8 100755 --- a/_build/deploy-phpdoc-branch.sh +++ b/_build/deploy-phpdoc-branch.sh @@ -39,10 +39,10 @@ generate-phpdoc.sh \ # commit phpDocs echo "Committing changes..." -git add "$PHPDOC_GIT_DIR/phpDoc/$PHPDOC_ID" +git add "$PHPDOC_GIT_DIR/phpDoc/$PHPDOC_ID.cache" "$PHPDOC_GIT_DIR/phpDoc/$PHPDOC_ID" git commit \ --message="Update phpDocumentor class docs for $TRAVIS_BRANCH branch @ $TRAVIS_COMMIT" \ - "$PHPDOC_GIT_DIR/phpDoc/$PHPDOC_ID" + "$PHPDOC_GIT_DIR/phpDoc/$PHPDOC_ID.cache" "$PHPDOC_GIT_DIR/phpDoc/$PHPDOC_ID" [ $? -eq 0 ] || exit 1 echo