aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2025-05-28 15:30:17 -0700
committerJohn MacFarlane <[email protected]>2025-05-28 15:30:17 -0700
commit241ddad0235da96b9b6b1a0abc3dccb78e4b0388 (patch)
tree1b94c3646e483d20c4fb1df4b8f68ed6a8a25e55 /Makefile
parent75db10f315ecba3c29446a0585a20e9837f71769 (diff)
Fix regexes in prelease check.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
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:"