forked from Archive/PX4-Autopilot
Makefile: exclude src/lib/crypto/libtommath from validate_module_configs
This commit is contained in:
parent
9c767ff1ee
commit
86aa9f9336
4
Makefile
4
Makefile
|
@ -482,7 +482,9 @@ shellcheck_all:
|
||||||
@make px4_fmu-v5_default shellcheck
|
@make px4_fmu-v5_default shellcheck
|
||||||
|
|
||||||
validate_module_configs:
|
validate_module_configs:
|
||||||
@find "$(SRC_DIR)"/src/modules "$(SRC_DIR)"/src/drivers "$(SRC_DIR)"/src/lib -name *.yaml -type f -not -path "$(SRC_DIR)/src/lib/mixer_module/*" -print0 | xargs -0 "$(SRC_DIR)"/Tools/validate_yaml.py --schema-file "$(SRC_DIR)"/validation/module_schema.yaml
|
@find "$(SRC_DIR)"/src/modules "$(SRC_DIR)"/src/drivers "$(SRC_DIR)"/src/lib -name *.yaml -type f \
|
||||||
|
-not -path "$(SRC_DIR)/src/lib/mixer_module/*" -not -path "$(SRC_DIR)/src/lib/crypto/libtommath/*" -print0 | \
|
||||||
|
xargs -0 "$(SRC_DIR)"/Tools/validate_yaml.py --schema-file "$(SRC_DIR)"/validation/module_schema.yaml
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
# --------------------------------------------------------------------
|
# --------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue