diff options
author | EuAndreh <eu@euandre.org> | 2022-01-18 15:54:06 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-01-18 15:54:06 -0300 |
commit | 286fd652f83b1c160021ca7c3525f0349269714c (patch) | |
tree | c6941cb4e50170fd8383d8f701cc55d0bb1c8e0d | |
parent | aux/workflow/l10n.sh: Generate and consume pofiles in parallel (diff) | |
download | git-permalink-286fd652f83b1c160021ca7c3525f0349269714c.tar.gz git-permalink-286fd652f83b1c160021ca7c3525f0349269714c.tar.xz |
Makefile: Enforce no missing translations in repocheck.sh call
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -101,7 +101,8 @@ dev-check: check public $(EXTRA_VERSION) sh aux/workflow/assert-manpages.sh -n '$(NAME)' -m '$(MAILING_LIST)' \ -l '$(TRANSLATIONS) en' $(manpages.en.in) - sh aux/workflow/repocheck.sh -x1 -l1 -f30 + env ASSERT_NO_MISSING_TRANSLATIONS=1 sh aux/workflow/repocheck.sh \ + -x1 -l1 -f30 dist: sh aux/workflow/dist.sh -d '$(DATE)' -V '$(VERSION)' -n '$(NAME)' \ |