Skip to content

Commit

Permalink
fix docs-generate skip logic
Browse files Browse the repository at this point in the history
  • Loading branch information
wkloucek committed Nov 16, 2021
1 parent bb6239d commit bd43895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .make/docs.mk
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit bd43895

Please sign in to comment.