From 1f982ddf47e56ba302085e68c8913fbcde8feff3 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Tue, 4 Oct 2022 21:24:20 -0700 Subject: Extend check-cabal to check all packages --- Makefile | 10 ++++++++-- 1 file 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: -- cgit v1.2.3