mirror of
				https://gitee.com/spark-store-project/spark-store
				synced 2025-11-04 16:22:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			110 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			110 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/sh
 | 
						|
set -e
 | 
						|
 | 
						|
case "$1" in
 | 
						|
    purge)
 | 
						|
 | 
						|
        rm -rf /usr/share/spark-update-tool
 | 
						|
        ;;
 | 
						|
esac
 | 
						|
 | 
						|
exit 0 |