this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix output name including lib twice

authored by

Andrew Hyatt and committed by
GitHub
29d6e206 dec7a4dc

+1 -1
+1 -1
tools/darling-stub-gen
··· 66 66 67 67 68 68 def extract_library_name(name): 69 - name = re.search("/([A-Za-z0-9]+)\.dylib$", name).group(1) 69 + name = re.search("/lib([A-Za-z0-9]+)\.dylib$", name).group(1) 70 70 print(name) 71 71 return name 72 72