Skip to content

Commit b8d5957

Browse files
authored
Fix variable name in Makefile (#579)
Fix wrong variable name in `Makefile`.
1 parent 35b7f75 commit b8d5957

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ format:
5050
check: check-format check-style check-actions
5151

5252
check-format:
53-
ruff format --check $(STYLE_CHECK_STYLE)
54-
burocrata --check --extension=py $(STYLE_CHECK_STYLE)
53+
ruff format --check $(STYLE_CHECK_FILES)
54+
burocrata --check --extension=py $(STYLE_CHECK_FILES)
5555

5656
check-style:
5757
ruff check $(STYLE_CHECK_FILES)

0 commit comments

Comments
 (0)