From 814dab58a4eea3202d28d7db4fa24c27287c5378 Mon Sep 17 00:00:00 2001 From: Francesco Montorsi Date: Mon, 13 Nov 2023 15:47:38 +0100 Subject: [PATCH] Documentation: fix the HTMLZIP name to restore the download-documentation functionality (#4628) --- .readthedocs.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.readthedocs.yaml b/.readthedocs.yaml index 590ce5b06c..e38258c800 100644 --- a/.readthedocs.yaml +++ b/.readthedocs.yaml @@ -33,5 +33,6 @@ build: # ------------ # Note that for usability we make sure zip will create a zipfile containing just a flat list of HTML files; # to achieve that it's important to avoid storing absolute paths when invoking "zip", thus we use -j + # Also note that the archive name should match exactly the project slug, "libzmq" in this case. - mkdir -p $READTHEDOCS_OUTPUT/htmlzip/ - - cd $READTHEDOCS_OUTPUT/html && zip -j ../htmlzip/zeromq.zip *.html + - cd $READTHEDOCS_OUTPUT/html && zip -j ../htmlzip/libzmq.zip *.html