22 lines
		
	
	
		
			420 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			420 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env python
 | 
						|
 | 
						|
import sys, os,config
 | 
						|
 | 
						|
def main():
 | 
						|
    args = sys.argv[1:]
 | 
						|
 | 
						|
    for name in args:
 | 
						|
        changed = False
 | 
						|
 | 
						|
        for file in config.FILES:
 | 
						|
            if os.path.exists(file):
 | 
						|
                if config.enable(file, name, False):
 | 
						|
                    changed = True
 | 
						|
 | 
						|
        if not changed:
 | 
						|
            print(f"ERROR: Can't find {name}")
 | 
						|
            exit(1)
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
    main()
 |