svn commit: r1928107 - apr/site/trunk/docs/docs
| Newsgroups | gmane.comp.apache.apr.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: dsahlberg
Date: Sat Aug 30 15:09:43 2025
New Revision: 1928107
Log:
In site/trunk:
Doxygen nowadays generate a lot more than HTML (js, png, map etc.). Remove
the is_html test that only add .html-files to SVN. Otherwise they have to be
added manually.
* docs/docs/propagate-docs.sh
As above.
Modified:
apr/site/trunk/docs/docs/propagate-docs.sh
Modified: apr/site/trunk/docs/docs/propagate-docs.sh
==============================================================================
--- apr/site/trunk/docs/docs/propagate-docs.sh Sat Aug 30 15:05:24 2025 (r1928106)
+++ apr/site/trunk/docs/docs/propagate-docs.sh Sat Aug 30 15:09:43 2025 (r1928107)
@@ -28,11 +28,6 @@ if ! pushd $dstdir; then
exit 1
fi
for fname in $unique; do
- is_html="`echo $fname | grep '.html$'`"
- if test -z "$is_html"; then
- continue
- fi
-
if test -f "${fname}"; then
# only in the destination
svn rm ${fname}