From 241ddad0235da96b9b6b1a0abc3dccb78e4b0388 Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Wed, 28 May 2025 15:30:17 -0700 Subject: Fix regexes in prelease check. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 4c8d96b8d..7c6b2bc17 100644 --- a/Makefile +++ b/Makefile @@ -306,10 +306,10 @@ clean: ## clean up .PHONY: .FORCE sdist-files.txt: .FORCE - cabal sdist --list-only | sed 's/\.\///' | grep '^\(test\|data\)\/' | sort > $@ + cabal sdist --list-only | sed 's/\.\///' | grep '^\(test\|data\)/' | sort > $@ git-files.txt: .FORCE - git ls-tree -r --name-only HEAD | grep '^\(test\|data\)\/' | sort > $@ + git ls-tree -r --name-only HEAD | grep '^\(test\|data\)/' | sort > $@ help: ## display this help @echo "Targets:" -- cgit v1.2.3