File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ def find_source_file(base_path):
63
63
64
64
65
65
# Function to process a JSON file and insert the "Last Verified" information into the HTML files
66
- def process_json_file (json_file_path ):
66
+ def process_json_file (build_dir , json_file_path ):
67
67
with open (json_file_path , "r" , encoding = "utf-8" ) as json_file :
68
68
json_data = json .load (json_file )
69
69
@@ -148,7 +148,7 @@ def main():
148
148
exit (1 )
149
149
build_dir = sys .argv [1 ]
150
150
print (f"Build directory: { build_dir } " )
151
- process_json_file (json_file_path )
151
+ process_json_file (build_dir , json_file_path )
152
152
print (
153
153
"Finished processing JSON file. Please check the output for any warnings. "
154
154
"Pages like `nlp/index.html` are generated only during the full `make docs` "
You can’t perform that action at this time.
0 commit comments