Skip to content

Commit efd713b

Browse files
committed
allow archives for rc releases to be built (closes #22484)
1 parent 29001c8 commit efd713b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Doc/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,9 +165,10 @@ autobuild-dev:
165165
autobuild-html:
166166
make html SPHINXOPTS='-A daily=1 -A versionswitcher=1'
167167

168-
# for stable releases: only build if not in pre-release stage (alpha, beta, rc)
168+
# for stable releases: only build if not in pre-release stage (alpha, beta)
169+
# release candidate downloads are okay, since the stable tree can be in that stage
169170
autobuild-stable:
170-
@case $(DISTVERSION) in *[abc]*) \
171+
@case $(DISTVERSION) in *[ab]*) \
171172
echo "Not building; $(DISTVERSION) is not a release version."; \
172173
exit 1;; \
173174
esac

0 commit comments

Comments
 (0)