Add print INFO to header modification script

This commit is contained in:
Jerry Zhao
2024-03-19 23:42:23 -07:00
parent ad838f0c83
commit 78adbc670b

View File

@@ -42,6 +42,7 @@ def process(inF, outF):
potentialIncFileName = d + "/" + match.group(1)
if os.path.exists(potentialIncFileName):
found = True
print("[INFO] Found missing include in {}".format(potentialIncFileName))
with open(potentialIncFileName, 'r') as incFile:
for iline in incFile:
outFile.write(iline)