File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ include make/general/Makefile
3
3
SUPPORTED_COMMANDS := linter
4
4
SUPPORTS_MAKE_ARGS := $(findstring $(firstword $(MAKECMDGOALS ) ) , $(SUPPORTED_COMMANDS ) )
5
5
ifneq "$(SUPPORTS_MAKE_ARGS ) " ""
6
- COMMAND_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS ) ) ,$(MAKECMDGOALS ) )
7
- $(eval $(COMMAND_ARGS ) :;@:)
6
+ COMMANDS_ARGS := $(wordlist 2,$(words $(MAKECMDGOALS ) ) ,$(MAKECMDGOALS ) )
7
+ $(eval $(COMMANDS_ARGS ) :;@:)
8
8
endif
9
9
10
10
install : node_modules # # Installation application
11
11
12
12
linter : node_modules # ## Scripts Linter
13
- ifeq ($(COMMAND_ARGS ) ,all)
13
+ ifeq ($(COMMANDS_ARGS ) ,all)
14
14
@make linter readme -i
15
- else ifeq ($(COMMAND_ARGS ),readme)
15
+ else ifeq ($(COMMANDS_ARGS ),readme)
16
16
@npm run linter-markdown README.md
17
17
else
18
18
@printf "${MISSING_ARGUMENTS}" "linter"
You can’t perform that action at this time.
0 commit comments