mirror of
				https://github.com/kenzok8/openwrt-packages.git
				synced 2025-10-30 07:50:37 +08:00 
			
		
		
		
	
		
			
	
	
		
			13 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
		
		
			
		
	
	
			13 lines
		
	
	
		
			455 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| ![github-actions[bot]](/assets/img/avatar_default.png)  | #!/bin/sh
 | ||
|  | 
 | ||
|  | new_version=`curl -sL "https://hub.fastgit.org/hubbylei/luci-app-clash/tags"| grep "/hubbylei/luci-app-clash/releases/"| head -n 1| awk -F "/tag/" '{print $2}'| sed 's/\">//g'` | ||
|  | if [ "$?" -eq "0" ]; then | ||
|  | rm -rf /usr/share/clash/new_luci_version | ||
|  | if [ $new_version ]; then | ||
|  | echo $new_version > /usr/share/clash/new_luci_version 2>&1 & >/dev/null | ||
|  | elif [ $new_version =="" ]; then | ||
|  | echo 0 > /usr/share/clash/new_luci_version 2>&1 & >/dev/null | ||
|  | fi | ||
|  | fi | ||
|  |   |