commit a87700633c91f98d3cef16bc7e4809a7ab6b4c2c Author: Nick Mathewson nickm@torproject.org Date: Mon Jun 24 13:45:05 2019 -0400
Don't try to shellcheck src/rust/registry
Fixes bug 30963; bug not in any released Tor. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Makefile.am b/Makefile.am index df30e0b59..67ef77f87 100644 --- a/Makefile.am +++ b/Makefile.am @@ -224,7 +224,7 @@ test: all shellcheck: # Only use shellcheck if it is present if command -v shellcheck; then \ - find "$(top_srcdir)" -name "*.sh" -not -path "$(top_srcdir)/src/ext/*" -exec shellcheck {} +; \ + find "$(top_srcdir)" -name "*.sh" -not -path "$(top_srcdir)/src/ext/*" -not -path "$(top_srcdir)/src/rust/registry/*" -exec shellcheck {} +; \ if [ -d "$(top_srcdir)/scripts/test" ]; then \ shellcheck $(top_srcdir)/scripts/test/cov-diff $(top_srcdir)/scripts/test/coverage; \ fi; \
tor-commits@lists.torproject.org