build - Path debugging in script

This commit is contained in:
thephez 2018-01-25 13:04:37 -05:00
parent 68395580f8
commit d43df8bb6b

View file

@ -40,15 +40,20 @@ echo 'Setting up the script...'
set -e set -e
pwd pwd
cd cd ..
pwd pwd
# Clone Dash Core # Clone Dash Core
mkdir code
cd code
git clone https://github.com/dashpay/dash.git 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. ##### ##### 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. # Redirect both stderr and stdout to the log file AND the console.
doxygen $DOXYFILE 2>&1 | tee doxygen.log doxygen $DOXYFILE 2>&1 | tee doxygen.log
echo 'Done generating Doxygen code documentation...'
cat doxygen.log cat doxygen.log