-
Notifications
You must be signed in to change notification settings - Fork 0
/
update-official-openwrt.sh
65 lines (49 loc) · 1.25 KB
/
update-official-openwrt.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/usr/bin/env bash
cd package/community
echo -e "\033[32mUpdate mentohust & luci-app-mentohust.\033[0m"
cd luci-app-mentohust
git pull
cd ../MentoHUST-OpenWrt-ipk
git pull
echo -e "\033[32mUpdate ServerChan.\033[0m"
cd ../luci-app-serverchan
git pull
echo -e "\033[32mUpdate luci-app-ssr-plus-Jo.\033[0m"
cd ../luci-app-ssr-plus-Jo
git pull
cd ../ssr-plus-Jo-dependences
git pull
echo -e "\033[32mUpdate OpenClash.\033[0m"
cd ../OpenClash
git pull
echo -e "\033[32mUpdate luci-app-koolproxyR.\033[0m"
cd ../luci-app-koolproxyR
git pull
echo -e "\033[32mUpdate luci-app-onliner.\033[0m"
cd ../luci-app-onliner
git pull
echo -e "\033[32mUpdate luci-app-dockerman.\033[0m"
cd ../luci-lib-docker
git pull
cd ../luci-app-dockerman
git pull
echo -e "\033[32mUpdate luci-app-frpc.\033[0m"
cd ../luci-app-frpc
git pull
echo -e "\033[32mUpdate luci-app-adguardhome.\033[0m"
cd ../luci-app-adguardhome
git pull
echo -e "\033[32mUpdate Rclone-OpenWrt.\033[0m"
cd ../Rclone-OpenWrt
git pull
echo -e "\033[32mUpdate openwrt-iptvhelper.\033[0m"
cd ../openwrt-iptvhelper
git pull
echo -e "\033[32mUpdate default settings.\033[0m"
cd ../default-settings
git pull
cd ../../..
echo -e "\033[32mUpdate & Install feeds.\033[0m"
./scripts/feeds update -a
./scripts/feeds install -a
exit 0