16 lines
		
	
	
		
			383 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			383 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env bash
 | |
| #
 | |
| # restore_configs
 | |
| #
 | |
| # Restore default configs, delete pins backup and dogm bitmaps
 | |
| #
 | |
| 
 | |
| # Restore the (possibly modified) Configurations
 | |
| [ -d ".test" -a -f ".test/Configuration.h" ] && cp .test/Configuration*.h Marlin/
 | |
| 
 | |
| # Restore the original unmodified pins
 | |
| [ -d ".test/pins" ] && cp -r .test/pins Marlin/src/pins/
 | |
| 
 | |
| # Delete DOGM bitmaps
 | |
| rm -f Marlin/_*screen.h
 |