Explorar el Código

_build/deploy-phpdoc-branch.sh: Don't forget to commit phpDocs cache

Daniel Rudolf hace 9 años
padre
commit
024f994d9e
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      _build/deploy-phpdoc-branch.sh

+ 2 - 2
_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