If nothing found shellcheck targets should succeed.
This commit is contained in:
parent
edaf4b46a5
commit
3be1c4ad6f
1 changed files with 5 additions and 4 deletions
9
Makefile
9
Makefile
|
@ -260,15 +260,16 @@ pep8:
|
||||||
$(helper) $@
|
$(helper) $@
|
||||||
|
|
||||||
shellcheck-global-explorers:
|
shellcheck-global-explorers:
|
||||||
@find cdist/conf/explorer -type f -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
@find cdist/conf/explorer -type f -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0
|
||||||
|
|
||||||
shellcheck-manifests:
|
shellcheck-manifests:
|
||||||
@find cdist/conf/type -type f -name manifest -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
@find cdist/conf/type -type f -name manifest -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0
|
||||||
|
|
||||||
shellcheck-local-gencodes:
|
shellcheck-local-gencodes:
|
||||||
@find cdist/conf/type -type f -name gencode-local -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
@find cdist/conf/type -type f -name gencode-local -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0
|
||||||
|
|
||||||
shellcheck-remote-gencodes:
|
shellcheck-remote-gencodes:
|
||||||
@find cdist/conf/type -type f -name gencode-remote -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP)
|
@find cdist/conf/type -type f -name gencode-remote -exec $(SHELLCHECKCMD) {} + | $(SHELLCHECK_SKIP) || exit 0
|
||||||
|
|
||||||
shellcheck-gencodes: shellcheck-local-gencodes shellcheck-remote-gencodes
|
shellcheck-gencodes: shellcheck-local-gencodes shellcheck-remote-gencodes
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue