tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 0418bc0cb276a6c11f6f05332ca15c87b5a5e56d
parent eb336e23a6a0979cf0c8e68f3dcd6a825a4b210d
Author: teor <teor@torproject.org>
Date:   Mon, 20 Jan 2020 13:04:02 +1000

add_c_file: Improve tor source directory checks

Check that the script isn't in a tor build directory, by looking
for a src/include.am file.

Part of 32962.

Diffstat:
Mscripts/maint/add_c_file.py | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/scripts/maint/add_c_file.py b/scripts/maint/add_c_file.py @@ -265,6 +265,8 @@ def run(fname): # Make sure we're in the top-level tor directory, # which contains the src directory assert(os.path.isdir("src")) + # And it looks like a tor/src directory + assert(os.path.isfile("src/include.am")) # Make the file name relative to the top-level tor directory tor_fname = tordir_file(fname)