mirror of
https://github.com/seigler/dash-docs
synced 2025-07-28 02:06:13 +00:00
build - Path debugging in script
This commit is contained in:
parent
68395580f8
commit
d43df8bb6b
1 changed files with 10 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue