]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Don't try to shellcheck src/rust/registry
authorNick Mathewson <nickm@torproject.org>
Mon, 24 Jun 2019 17:45:05 +0000 (13:45 -0400)
committerNick Mathewson <nickm@torproject.org>
Mon, 24 Jun 2019 17:45:05 +0000 (13:45 -0400)
Fixes bug 30963; bug not in any released Tor.

Makefile.am

index df30e0b59a94793b1ba82457b9d0b4851768b6cc..67ef77f8761e7e35c16cadcbc6c6564171312ce1 100644 (file)
@@ -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; \