mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-22 23:48:12 +00:00
make: fix find usage in macos
This commit is contained in:
parent
cc7e844898
commit
37c13a8cd5
4
Makefile
4
Makefile
@ -5,8 +5,8 @@ help: ## show this help
|
|||||||
|
|
||||||
## style commands:
|
## style commands:
|
||||||
|
|
||||||
PY_FILES = $(shell find -type f -name '*.py' | grep -f ./tools/style.py.include | grep -v -f ./tools/style.py.exclude )
|
PY_FILES = $(shell find . -type f -name '*.py' | grep -f ./tools/style.py.include | grep -v -f ./tools/style.py.exclude )
|
||||||
C_FILES = $(shell find -type f -name '*.[ch]' | grep -f ./tools/style.c.include | grep -v -f ./tools/style.c.exclude )
|
C_FILES = $(shell find . -type f -name '*.[ch]' | grep -f ./tools/style.c.include | grep -v -f ./tools/style.c.exclude )
|
||||||
|
|
||||||
|
|
||||||
style_check: ## run code style check on application sources and tests
|
style_check: ## run code style check on application sources and tests
|
||||||
|
Loading…
Reference in New Issue
Block a user