fix docs-generate skip logic

This commit is contained in:
Willy Kloucek
2021-11-16 11:15:25 +01:00
parent bb6239d2ad
commit bd43895212

View File

@@ -4,7 +4,7 @@ CONFIG_DOCS_BASE_PATH ?= ../docs/extensions
.PHONY: config-docs-generate
config-docs-generate: $(FLAEX)
@if [ $(SKIP_CONFIG_DOCS_GENERATE) -eq 1 ]; then \
@if [ $(SKIP_CONFIG_DOCS_GENERATE) -ne 1 ]; then \
$(FLAEX) >| $(CONFIG_DOCS_BASE_PATH)/$(NAME)/configuration.md \
; fi;