16 lines
		
	
	
		
			340 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			340 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| """Wrapper for lifecycle/ak, to be installed by poetry"""
 | |
| from os import system
 | |
| from pathlib import Path
 | |
| from sys import argv
 | |
| 
 | |
| 
 | |
| def main():
 | |
|     """Wrapper around ak bash script"""
 | |
|     current_path = Path(__file__)
 | |
|     args = " ".join(argv[1:])
 | |
|     system(f"{current_path.parent}/ak {args}")  # nosec
 | |
| 
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     main()
 | 
