summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 97d7928be..b6216f1e1 100644
--- a/Makefile
+++ b/Makefile
@@ -53,8 +53,14 @@ check: fix_spacing check-cabal checkdocs ## prerelease checks
check-cabal: git-files.txt sdist-files.txt
@echo "Checking to see if all committed test/data files are in sdist."
diff -u $^
- cabal check
- cabal outdated
+ @for pkg in . pandoc-lua-engine pandoc-server pandoc-cli; \
+ do \
+ pushd $$pkg ; \
+ cabal check ; \
+ cabal outdated ; \
+ popd ; \
+ done
+
.PHONY: check-cabal
checkdocs: