Skip to content

Commit

Permalink
eliminate parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Sep 24, 2024
1 parent 7761444 commit b2e6718
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ build:
curl -L https://sourceforge.net/projects/doxygen/files/rel-$DOXYGEN_VERSION/doxygen-$DOXYGEN_VERSION.linux.bin.tar.gz > doxygen.tar.gz &&
gunzip doxygen.tar.gz &&
tar xf doxygen.tar &&
mv doxygen-$DOXYGEN_VERSION/bin/doxygen ./
mv doxygen-$DOXYGEN_VERSION/bin/doxygen ./ &&
cd ..
- echo $(pwd)
# get lib version & overwrite Doxyfile values
- >
echo $(pwd) &&
RF24_VERSION=v$(awk -F "=" '/version/ {print $2}' library.properties) &&
RF24_VERSION=v`awk -F "=" '/version/ {print $2}' library.properties` &&
touch docs/doxygenAction &&
echo "PROJECT_NUMBER = $RF24_VERSION" >> docs/doxygenAction &&
echo -e "\n@INCLUDE = doxygenAction" >> docs/Doxyfile
# run doxygen
- cd docs && ./.doxygen/doxygen
- cd docs && ../.doxygen/doxygen
# copy output to RTD output path for HTML files
- mv docs/html/ "$READTHEDOCS_OUTPUT/"

Expand Down

0 comments on commit b2e6718

Please sign in to comment.