Skip to content

Commit

Permalink
Fix Doxygen build
Browse files Browse the repository at this point in the history
  • Loading branch information
darksylinc committed Oct 15, 2024
1 parent 8ca134f commit 75643c3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Scripts/BuildScripts/build_ci_doxygen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ echo "--- Going to gh-pages repo ---"
cd ../../gh-pages || exit $?
cd api || exit $?
echo "--- Removing old ${OGRE_VERSION} ---"
git rm -rf ${OGRE_VERSION} || exit $?
rm -rf ${OGRE_VERSION} || exit $?
if [ -d "${OGRE_VERSION}" ]; then
git rm -rf ${OGRE_VERSION} || exit $?
rm -rf ${OGRE_VERSION} || exit $?
fi
echo "--- Copying new ${OGRE_VERSION} ---"
mv ../../build/Doxygen/api/html ${OGRE_VERSION} || exit $?

Expand Down

0 comments on commit 75643c3

Please sign in to comment.