diff --git a/scripts/generateDocumentationAndDeploy.sh b/scripts/generateDocumentationAndDeploy.sh index 1b219dc8..8ce6f851 100644 --- a/scripts/generateDocumentationAndDeploy.sh +++ b/scripts/generateDocumentationAndDeploy.sh @@ -40,15 +40,20 @@ echo 'Setting up the script...' set -e pwd -cd +cd .. pwd # Clone Dash Core -mkdir code -cd code git clone https://github.com/dashpay/dash.git +cd dash -cp $TRAVIS_BUILD_DIR/doxygen/* dash/doc/ +ls + +ls $TRAVIS_BUILD_DIR/doxygen/ +cp $TRAVIS_BUILD_DIR/doxygen/* doc/ + +ls +ls doc/ ################################################################################ ##### Generate the Doxygen code documentation and log the output. ##### @@ -56,4 +61,5 @@ echo 'Generating Doxygen code documentation...' # Redirect both stderr and stdout to the log file AND the console. doxygen $DOXYFILE 2>&1 | tee doxygen.log +echo 'Done generating Doxygen code documentation...' cat doxygen.log