We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78d9a5e commit a8402feCopy full SHA for a8402fe
Makefile
@@ -762,12 +762,11 @@ PKG=$(TARNAME).pkg
762
MACOSOUTDIR=out/macos
763
764
release-only:
765
- @if [ "$(DISTTYPE)" != "nightly" ] && [ "$(DISTTYPE)" != "next-nightly" ] && \
766
- `grep -q REPLACEME doc/api/*.md`; then \
+ @if [ "$(DISTTYPE)" = "release" ] && `grep -q REPLACEME doc/api/*.md`; then \
767
echo 'Please update REPLACEME in Added: tags in doc/api/*.md (See doc/releases.md)' ; \
768
exit 1 ; \
769
fi
770
+ @if [ "$(DISTTYPE)" = "release" ] && \
771
`grep -q DEP00XX doc/api/deprecations.md`; then \
772
echo 'Please update DEP00XX in doc/api/deprecations.md (See doc/releases.md)' ; \
773
0 commit comments