diff options
| author | John MacFarlane <[email protected]> | 2025-05-28 15:30:17 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2025-05-28 15:30:17 -0700 |
| commit | 241ddad0235da96b9b6b1a0abc3dccb78e4b0388 (patch) | |
| tree | 1b94c3646e483d20c4fb1df4b8f68ed6a8a25e55 /Makefile | |
| parent | 75db10f315ecba3c29446a0585a20e9837f71769 (diff) | |
Fix regexes in prelease check.
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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:" |
