commit 3221dc1b32f651f45184efab6bc3a8fa4863aea4 parent 8d3f3e5d30fa97479bc218a2896cb538ea220514 Author: Nick Mathewson <nickm@torproject.org> Date: Thu, 1 Aug 2019 08:40:56 -0400 Lower check of TOR_DISABLE_PRACTRACKER Since we sometimes call practracker directly, that's where we should check the TOR_DISABLE_PRACTRACKER envvar. Diffstat:
| M | Makefile.am | | | 4 | +--- |
| M | scripts/maint/practracker/practracker.py | | | 2 | ++ |
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile.am b/Makefile.am @@ -369,9 +369,7 @@ endif check-best-practices: if USEPYTHON - @if test "$$TOR_DISABLE_PRACTRACKER" = ""; then \ - $(PYTHON) $(top_srcdir)/scripts/maint/practracker/practracker.py $(top_srcdir); \ - fi + @$(PYTHON) $(top_srcdir)/scripts/maint/practracker/practracker.py $(top_srcdir) endif practracker-regen: diff --git a/scripts/maint/practracker/practracker.py b/scripts/maint/practracker/practracker.py @@ -246,4 +246,6 @@ variable. sys.exit(found_new_issues) if __name__ == '__main__': + if os.environ.get("TOR_DISABLE_PRACTRACKER"): + sys.exit(0) main(sys.argv)