Update xray.sh

This commit is contained in:
windyday 2025-06-22 02:17:46 +08:00 committed by GitHub
parent 804001b4ec
commit 8a36a80ad4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -231,7 +231,10 @@ Config() {
;; ;;
esac esac
done done
echo -n "Install UPX compress version?[n]: "
read xray_UPX
fi fi
echo "$xray_UPX"|grep -qi '^y' && xray_UPX="upx" || xray_UPX=""
} }
GetAbi() { GetAbi() {
@ -264,8 +267,8 @@ InstallFile() {
mkdir -p "${xray_install_directory:=/usr/local/xray}" || Error "Create xray install directory failed." mkdir -p "${xray_install_directory:=/usr/local/xray}" || Error "Create xray install directory failed."
cd "$xray_install_directory" || Error "Create cns install directory failed." cd "$xray_install_directory" || Error "Create cns install directory failed."
#install xray #install xray
github_repo="https://github.com/CoverUp137/cns/releases/download/xray" #github_repo="https://github.com/CoverUp137/cns/releases/download/xray"
$download_tool_cmd xray "$github_repo/xray-linux-${machine}" || Error "xray download failed." $download_tool_cmd xray "https://github.com/CoverUp137/cns/releases/download/xray/xray-linux-${machine}" || Error "xray download failed."
$download_tool_cmd xray.init https://raw.githubusercontent.com/CoverUp137/cns/refs/heads/main/xray/xray.init || Error "xray.init download failed." $download_tool_cmd xray.init https://raw.githubusercontent.com/CoverUp137/cns/refs/heads/main/xray/xray.init || Error "xray.init download failed."
[ -f '/etc/rc.common' ] && rcCommon='/etc/rc.common' [ -f '/etc/rc.common' ] && rcCommon='/etc/rc.common'
sed -i "s~#!/bin/sh~#!$SHELL $rcCommon~" xray.init sed -i "s~#!/bin/sh~#!$SHELL $rcCommon~" xray.init
@ -505,4 +508,4 @@ ScriptInit() {
} }
ScriptInit ScriptInit
echo $*|grep -qi uninstall && Uninstall || Install echo $*|grep -qi uninstall && Uninstall || Install