mirror of https://github.com/CIRCL/AIL-framework
				
				
				
			
		
			
				
	
	
		
			23 lines
		
	
	
		
			475 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			23 lines
		
	
	
		
			475 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
| #!/usr/bin/env python3
 | |
| # -*-coding:UTF-8 -*
 | |
| 
 | |
| import os
 | |
| import sys
 | |
| 
 | |
| sys.path.append(os.environ['AIL_HOME'])
 | |
| ##################################
 | |
| # Import Project packages
 | |
| ##################################
 | |
| from update.bin.old_ail_updater import AIL_Updater
 | |
| 
 | |
| class Updater(AIL_Updater):
 | |
|     """default Updater."""
 | |
| 
 | |
|     def __init__(self, version):
 | |
|         super(Updater, self).__init__(version)
 | |
| 
 | |
| 
 | |
| if __name__ == '__main__':
 | |
|     updater = Updater('v3.3')
 | |
|     updater.run_update()
 |