Create a .nojekyll file in the doc folder

Files that start with an underscore are missing in GitHub pages (doxygen documentation).
The work around for this behavior is to include a .nojekyll file in the root path to turn off Jekyll.
If we add a .nojekyll file, the source files will be published without any modifications.
This commit is contained in:
Crayon2000 2017-11-21 09:50:03 -05:00
parent 3161ad7a71
commit d406c92ac1
3 changed files with 7 additions and 4 deletions

View file

@ -31,6 +31,9 @@ script:
- (cd GRRLIB && sudo -E make PLATFORM=cube clean all) - (cd GRRLIB && sudo -E make PLATFORM=cube clean all)
- doxygen grrlib.doxygen - doxygen grrlib.doxygen
before_deploy:
touch $TRAVIS_BUILD_DIR/doc/.nojekyll
deploy: deploy:
provider: pages provider: pages
skip_cleanup: true skip_cleanup: true