From 0418bc0cb276a6c11f6f05332ca15c87b5a5e56d Mon Sep 17 00:00:00 2001 From: teor Date: Mon, 20 Jan 2020 13:04:02 +1000 Subject: 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. --- scripts/maint/add_c_file.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'scripts/maint/add_c_file.py') diff --git a/scripts/maint/add_c_file.py b/scripts/maint/add_c_file.py index 25a1be5331..a7478cbecf 100755 --- 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) -- cgit v1.2.3-54-g00ecf