Skip to content

Commit

Permalink
chore(makefile): improve feedback (#1548)
Browse files Browse the repository at this point in the history
  • Loading branch information
hekike committed Nov 2, 2017
1 parent f58d4b0 commit 6598949
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/mk/Makefile.targ
Expand Up @@ -128,11 +128,11 @@ check-eslint::

.PHONY: check-lint
check-lint::
NO_STYLE=true $(ESLINT) $(JS_FILES)
@(echo 'Running "make check-lint"'; NO_STYLE=true $(ESLINT) $(JS_FILES))

.PHONY: check-style
check-style::
NO_LINT=true $(ESLINT) $(JS_FILES)
@(echo 'Running "make check-style"'; NO_LINT=true $(ESLINT) $(JS_FILES) || (echo 'Run "make fix-style" to auto-fix styling issues'; exit 1))

.PHONY: fix-style
fix-style::
Expand Down

0 comments on commit 6598949

Please sign in to comment.