Files
openwrt-packages/luci-app-clash/root/usr/share/clash/check_luci_version.sh
2022-04-11 16:22:56 +08:00

13 lines
455 B
Bash

#!/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