diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-04-29 10:15:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-04-29 10:15:03 -0400 |
commit | 593d29920e264180a7a6849fc59224a8869388d7 (patch) | |
tree | db56e8671bc79f54064d5e3ee5b8cbcf25fb2d44 | |
parent | a39789a02c2d89eaa8289a68a6b0fab0cc4d71dc (diff) | |
parent | 1788343affdec7ac73dbdf1c50b486f593a2d428 (diff) | |
download | tor-593d29920e264180a7a6849fc59224a8869388d7.tar.gz tor-593d29920e264180a7a6849fc59224a8869388d7.zip |
Merge remote-tracking branch 'tor-github/pr/974' into maint-0.4.0
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | changes/bug30263 | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index d65c08f6bf..8bf2aaf910 100644 --- a/Makefile.am +++ b/Makefile.am @@ -220,7 +220,7 @@ shellcheck: if command -v shellcheck; then \ find $(top_srcdir)/scripts/ -name "*.sh" -exec shellcheck {} +; \ if [ -d "$(top_srcdir)/scripts/test" ]; then \ - shellcheck $(top_srcdir)/scripts/test/cov-diff $(top_builddir)/scripts/test/coverage; \ + shellcheck $(top_srcdir)/scripts/test/cov-diff $(top_srcdir)/scripts/test/coverage; \ fi; \ fi diff --git a/changes/bug30263 b/changes/bug30263 new file mode 100644 index 0000000000..ba81c1b8a1 --- /dev/null +++ b/changes/bug30263 @@ -0,0 +1,3 @@ + o Minor bugfixes (shellcheck): + - Stop looking for scripts in the build directory during + "make shellcheck". Fixes bug 30263; bugfix on 0.4.0.1-alpha. |