You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							37 lines
						
					
					
						
							718 B
						
					
					
				
			
		
		
	
	
							37 lines
						
					
					
						
							718 B
						
					
					
				| #!/usr/bin/env python3
 | |
| import os
 | |
| import re
 | |
| from pathlib import Path
 | |
| 
 | |
| HERE = os.path.abspath(os.path.dirname(__file__))
 | |
| ROOT = HERE + "/.."
 | |
| 
 | |
| blacklist = [
 | |
|   ".git/",
 | |
|   ".github/workflows/",
 | |
| 
 | |
|   "matlab.*.md",
 | |
| 
 | |
|   # no LFS or submodules in release
 | |
|   ".lfsconfig",
 | |
|   ".gitattributes",
 | |
|   ".git$",
 | |
|   ".gitmodules",
 | |
| ]
 | |
| 
 | |
| # gets you through the blacklist
 | |
| whitelist: list[str] = [
 | |
| ]
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|   for f in Path(ROOT).rglob("**/*"):
 | |
|     if not (f.is_file() or f.is_symlink()):
 | |
|       continue
 | |
| 
 | |
|     rf = str(f.relative_to(ROOT))
 | |
|     blacklisted = any(re.search(p, rf) for p in blacklist)
 | |
|     whitelisted = any(re.search(p, rf) for p in whitelist)
 | |
|     if blacklisted and not whitelisted:
 | |
|       continue
 | |
| 
 | |
|     print(rf)
 | |
| 
 |