Skip to content

Commit

Permalink
Fix wildcard in data files to include all files in data/
Browse files Browse the repository at this point in the history
This is not very nice, but calling all files `*.data` is superfluous
since they're already in a data file directory.
  • Loading branch information
iustin committed Jan 7, 2025
1 parent ba46d54 commit 1a074e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ DISTFILES = \
.clang-format

TESTFILES = $(wildcard tests/*.test)
TESTDATAFILES = $(wildcard tests/data/*.data)
TESTDATAFILES = $(wildcard tests/data/*)

VERSION=1.7
RELEASEDIR=mt-st-$(VERSION)
Expand Down

0 comments on commit 1a074e2

Please sign in to comment.