We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 983e3a1 commit aa88483Copy full SHA for aa88483
Makefile
@@ -810,12 +810,11 @@ MACOSOUTDIR=out/macos
810
811
.PHONY: release-only
812
release-only:
813
- @if [ "$(DISTTYPE)" != "nightly" ] && [ "$(DISTTYPE)" != "next-nightly" ] && \
814
- `grep -q REPLACEME doc/api/*.md`; then \
+ @if [ "$(DISTTYPE)" = "release" ] && `grep -q REPLACEME doc/api/*.md`; then \
815
echo 'Please update REPLACEME in Added: tags in doc/api/*.md (See doc/releases.md)' ; \
816
exit 1 ; \
817
fi
818
+ @if [ "$(DISTTYPE)" = "release" ] && \
819
`grep -q DEP...X doc/api/deprecations.md`; then \
820
echo 'Please update DEP...X in doc/api/deprecations.md (See doc/releases.md)' ; \
821
0 commit comments