mirror of
				https://github.com/limosek/zaf.git
				synced 2025-10-31 17:47:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			165 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			165 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| case $1 in
 | |
| install)
 | |
| 	if [ -d /usr/lib/zaf ]; then
 | |
| 		echo "Do zaf self-remove first! Cannot mix packaged and non-packaged version!"
 | |
| 		exit 2 
 | |
| 	fi
 | |
| 	;;
 | |
| esac
 | 
