Skip to content
Snippets Groups Projects
Commit 19dbd431 authored by rl1987's avatar rl1987 Committed by Nick Mathewson
Browse files

Shellcheck all the scripts

parent ecc5feff
No related branches found
No related tags found
No related merge requests found
......@@ -224,10 +224,19 @@ test: all
shellcheck:
# Only use shellcheck if it is present
if command -v shellcheck; then \
find $(top_srcdir)/scripts/ -name "*.sh" -exec shellcheck {} +; \
find "$(top_srcdir)" -name "*.sh" -not -path "$(top_srcdir)/src/ext/*" -exec shellcheck {} +; \
if [ -d "$(top_srcdir)/scripts/test" ]; then \
shellcheck $(top_srcdir)/scripts/test/cov-diff $(top_srcdir)/scripts/test/coverage; \
fi; \
if [ -e "$(top_srcdir)/contrib/dirauth-tools/nagios-check-tor-authority-cert" ]; then \
shellcheck "$(top_srcdir)/contrib/dirauth-tools/nagios-check-tor-authority-cert"; \
fi; \
if [ -e "$(top_srcdir)/contrib/client-tools/torify" ]; then \
shellcheck "$(top_srcdir)/contrib/client-tools/torify"; \
fi; \
if [ -d "$(top_srcdir)/scripts/git" ]; then \
shellcheck $(top_srcdir)/scripts/git/*.git-hook; \
fi; \
fi
check-local: check-spaces check-changes check-includes check-best-practices shellcheck
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment