We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c007fa7 + ebe3ced commit f10095dCopy full SHA for f10095d
tools/strip_binaries.py
@@ -125,6 +125,10 @@ def generate_version(part_src_dir = None) -> str:
125
debugpath = os.path.join(debugroot, buildid[:2])
126
debugname = os.path.join(debugpath, f"{buildid[2:]}.debug")
127
128
+ if os.path.exists(debugname):
129
+ print(f"Debug symbols file {debugname} already exists, skipping.")
130
+ continue
131
+
132
print(f"Extracting symbols from {fullpath} into {debugname}")
133
try:
134
os.makedirs(debugpath)
0 commit comments