| 
									
										
										
										
											2020-09-10 21:06:56 +02:00
										 |  |  | #! /bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # clean up the mess we made | 
					
						
							|  |  |  |  # rm *.js | 
					
						
							|  |  |  |  # rm Logic/*.js | 
					
						
							|  |  |  |  # rm Logic/*.js | 
					
						
							|  |  |  |  # rm Logic/*/*.js | 
					
						
							|  |  |  |  # rm Logic/*/*/*.js | 
					
						
							|  |  |  |  # rm UI/*.js | 
					
						
							|  |  |  |  # rm UI/*/*.js | 
					
						
							|  |  |  |  # rm UI/*/*/*.js | 
					
						
							|  |  |  |  # rm Customizations/*.js | 
					
						
							|  |  |  |  # rm Customizations/*/*.js | 
					
						
							|  |  |  |  # rm Customizations/*/*/*.js | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | rm *.webmanifest | 
					
						
							|  |  |  | rm assets/generated/* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | for f in ./*.html; do | 
					
						
							|  |  |  |     if [[ "$f" == "./index.html" ]] || [[ "$f" == "./land.html" ]] || [[ "$f" == "./test.html" ]] || [[ "$f" == "./preferences.html" ]] || [[ "$f" == "./customGenerator.html" ]] | 
					
						
							|  |  |  |     then | 
					
						
							|  |  |  |         echo "Not removing $f" | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         rm $f | 
					
						
							|  |  |  |     fi | 
					
						
							|  |  |  | done | 
					
						
							| 
									
										
										
										
											2020-09-27 01:38:51 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | rm -rf .cache |