Skip to content

Commit 145bb41

Browse files
committed
[docs] Keep job running even if .qch files are not present.
Currently, the job fails when it cannot find .qch files to compress. Now, the error message is printed, but the upload of the documentation proceeds.
1 parent e239ff0 commit 145bb41

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

documentation/doxygen/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ doxygen: filter pyzdoc htmlfooter
7878
./makeinput.sh
7979
doxygen
8080
bash ./CleanNamespaces.sh
81-
gzip $(DOXYGEN_IMAGE_PATH)/ROOT.tag
82-
gzip $(DOXYGEN_IMAGE_PATH)/ROOT.qch
81+
gzip $(DOXYGEN_IMAGE_PATH)/ROOT.tag || true
82+
gzip $(DOXYGEN_IMAGE_PATH)/ROOT.qch || true
8383
rm -rf files c1* *.ps *.eps *.png *.jpg *.tex *.svg *.pdf *.root *.xpm *.out *.dat *.dtd *.dot *.txt *.csv *.log *.rs
8484
rm -rf listofclass.sh tmva* data* result* config* test* Roo* My* Freq*
8585
rm -f Doxyfile_INPUT filter htmlfooter.html MDF.C pca.C

0 commit comments

Comments
 (0)