From d43df8bb6b19f76959397495a3f2915d02667933 Mon Sep 17 00:00:00 2001 From: thephez Date: Thu, 25 Jan 2018 13:04:37 -0500 Subject: [PATCH] build - Path debugging in script --- scripts/generateDocumentationAndDeploy.sh | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) 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