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.
		
		
		
		
		
			
		
			
				
					
					
						
							13 lines
						
					
					
						
							354 B
						
					
					
				
			
		
		
	
	
							13 lines
						
					
					
						
							354 B
						
					
					
				| import 'dart:io';
 | |
| 
 | |
| void main(List<String> arguments) {
 | |
|   print("running default after_script.");
 | |
|   var rootDir = Directory('./');
 | |
|   rootDir.listSync(recursive: true).forEach((p) {
 | |
|     if (p.path.endsWith('.bak')) {
 | |
|       File(p.path.substring(0, p.path.length - 4)).deleteSync();
 | |
|       p.renameSync(p.path.substring(0, p.path.length - 4));
 | |
|     }
 | |
|   });
 | |
| }
 |