We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1063e0c commit 955819eCopy full SHA for 955819e
Makefile
@@ -817,12 +817,11 @@ MACOSOUTDIR=out/macos
817
818
.PHONY: release-only
819
release-only:
820
- @if [ "$(DISTTYPE)" != "nightly" ] && [ "$(DISTTYPE)" != "next-nightly" ] && \
821
- `grep -q REPLACEME doc/api/*.md`; then \
+ @if [ "$(DISTTYPE)" = "release" ] && `grep -q REPLACEME doc/api/*.md`; then \
822
echo 'Please update REPLACEME in Added: tags in doc/api/*.md (See doc/releases.md)' ; \
823
exit 1 ; \
824
fi
825
+ @if [ "$(DISTTYPE)" = "release" ] && \
826
`grep -q DEP...X doc/api/deprecations.md`; then \
827
echo 'Please update DEP...X in doc/api/deprecations.md (See doc/releases.md)' ; \
828
0 commit comments