mirror of https://github.com/libsdl-org/SDL
				
				
				
			
			You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			8 lines
		
	
	
		
			438 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			8 lines
		
	
	
		
			438 B
		
	
	
	
		
			Bash
		
	
| #!/bin/sh
 | |
| find . -type f \( -name '*.user' -o -name '*.sdf' -o -name '*.ncb' -o -name '*.suo' \) -print -delete
 | |
| find . -type f \( -name '*.bmp' -o -name '*.wav' -o -name '*.dat' \) -print -delete
 | |
| find . -depth -type d \( -name Gaming.Desktop.x64 \) -exec rm -rv {} \;
 | |
| find . -depth -type d \( -name Gaming.Xbox.Scarlett.x64 \) -exec rm -rv {} \;
 | |
| find . -depth -type d \( -name Gaming.Xbox.XboxOne.x64 \) -exec rm -rv {} \;
 | |
| rm shaders/*.h
 |