checkIncludes.py 468 B

1234567891011121314
  1. #!/usr/bin/python
  2. # Copyright 2018 The Tor Project, Inc. See LICENSE file for licensing info.
  3. # This file is no longer here; see practracker/includes.py for this
  4. # functionality. This is a stub file that exists so that older git
  5. # hooks will know where to look.
  6. import sys, os
  7. dirname = os.path.split(sys.argv[0])[0]
  8. new_location = os.path.join(dirname, "practracker", "includes.py")
  9. python = sys.executable
  10. os.execl(python, python, new_location, *sys.argv[1:])