Skip to content

Commit 27661be

Browse files
committed
build: add missing endif to fix conditional
1 parent 0aa7b4a commit 27661be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/make/lib/lint/javascript/eslint.mk

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,11 @@ endif
5656
FIX_TYPE ?=
5757
ifneq ($(FIX_TYPE),)
5858
ESLINT_FLAGS += --fix-type $(FIX_TYPE)
59-
else ifeq ($(AUTOFIX),true)
59+
else
60+
ifeq ($(AUTOFIX),true)
6061
ESLINT_FLAGS += --fix-type problem,layout,directive
6162
endif
63+
endif
6264

6365
# RULES #
6466

0 commit comments

Comments
 (0)