Skip to content

Commit a947d6f

Browse files
committed
set installed version for all packages
1 parent 9031cd5 commit a947d6f

File tree

5 files changed

+24
-22
lines changed

5 files changed

+24
-22
lines changed

other/telegram/tgo/install.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ systemctl disable mtproxy.service >/dev/null 2>&1
1313
# export PATH=$(pwd)/go/bin:$PATH
1414

1515
download_package mtproxygo mtg-linux.tar.gz
16-
tar -xf mtg-linux.tar.gz
17-
rm -rf mtg-linux
18-
mv mtg-linux/mtg mtg
19-
16+
tar -xf mtg-linux.tar.gz || exit 1
17+
rm -rf mtg-linux
18+
mv mtg-linux/mtg mtg || exit 2
19+
set_installed_version mtproxygo
2020
# export GOPATH=/opt/hiddify-manager/other/telegram/tgo/go/
2121
# export GOCACHE=/opt/hiddify-manager/other/telegram/tgo/gocache/
2222
# git clone https://github.com/9seconds/mtg/

other/v2ray/install.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
source /opt/hiddify-manager/common/package_manager.sh
22
install_package shadowsocks-libev
33

4-
if ! is_installed ./v2ray-plugin_linux; then
5-
download_package v2ray-plugin v2ray-plugin-linux.tar.gz
6-
tar xvzf v2ray-plugin-linux.tar.gz
7-
mv v2ray-plugin_linux_$(dpkg --print-architecture) v2ray-plugin_linux
4+
download_package v2ray-plugin v2ray-plugin-linux.tar.gz
5+
if [ "$?" == "0" ] || ! is_installed ./v2ray-plugin_linux; then
6+
tar xvzf v2ray-plugin-linux.tar.gz || exit 1
7+
mv v2ray-plugin_linux_$(dpkg --print-architecture) v2ray-plugin_linux ||exit 2
8+
set_installed_version v2ray-plugin
89
fi

other/warp/wireguard/install.sh

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# bash download_wgcf.sh
22
source /opt/hiddify-manager/common/package_manager.sh
3-
if ! is_installed ./wgcf; then
4-
download_package wgcf wgcf
5-
chmod +x wgcf
6-
fi
73
install_package wireguard-dkms wireguard-tools
4+
download_package wgcf wgcf
5+
if [ "$?" == "0" ] || ! is_installed ./wgcf; then
6+
chmod +x wgcf || exit 1
7+
set_installed_version wgcf
8+
fi

singbox/install.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ version="" #use specific version if needed otherwise it will use the latest
1010
download_package singbox sb.zip $version
1111
if [ "$?" == "0" ] || ! is_installed ./sing-box; then
1212
install_package unzip
13-
unzip -o sb.zip > /dev/null || return 1
14-
cp -f sing-box-*/sing-box . 2>/dev/null || return 2
15-
rm -r sb.zip sing-box-* 2>/dev/null || return 3
16-
chown root:root sing-box || return 4
17-
chmod +x sing-box || return 5
18-
ln -sf /opt/hiddify-manager/singbox/sing-box /usr/bin/sing-box || return 6
13+
unzip -o sb.zip > /dev/null || exit 1
14+
cp -f sing-box-*/sing-box . 2>/dev/null || exit 2
15+
rm -r sb.zip sing-box-* 2>/dev/null || exit 3
16+
chown root:root sing-box || exit 4
17+
chmod +x sing-box || exit 5
18+
ln -sf /opt/hiddify-manager/singbox/sing-box /usr/bin/sing-box || exit 6
1919
rm geosite.db 2>/dev/null
2020
set_installed_version singbox $version
2121
fi

xray/install.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ if [ "$?" == "0" ] || ! is_installed ./bin/xray; then
1010
systemctl stop hiddify-xray.service > /dev/null 2>&1
1111
rm -rf bin/*
1212
install_package unzip
13-
unzip -o sb.zip -d bin/ > /dev/null || return 1
13+
unzip -o sb.zip -d bin/ > /dev/null || exit 1
1414
rm -r sb.zip
15-
chown root:root bin/xray || return 2
16-
chmod +x bin/xray || return 3
17-
ln -sf /opt/hiddify-manager/xray/bin/xray /usr/bin/xray || return 3
15+
chown root:root bin/xray || exit 2
16+
chmod +x bin/xray || exit 3
17+
ln -sf /opt/hiddify-manager/xray/bin/xray /usr/bin/xray || exit 3
1818
set_installed_version xray $version
1919
fi

0 commit comments

Comments
 (0)