1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00
v2fly/release/install-release.sh
2020-08-15 16:04:57 +08:00

22 lines
614 B
Bash
Executable File

#!/bin/bash
# This file is accessible as https://install.direct/go.sh
# Original source is located at github.com/v2fly/v2ray-core/release/install-release.sh
# If not specify, default meaning of return value:
# 0: Success
# 1: System error
# 2: Application error
# 3: Network error
#######color code########
RED="31m" # Error message
YELLOW="33m" # Warning message
colorEcho(){
echo -e "\033[${1}${@:2}\033[0m" 1>& 2
}
colorEcho ${RED} "ERROR: This script has been DISCARDED, please switch to fhs-install-v2ray project."
colorEcho ${YELLOW} "URL: https://github.com/v2fly/fhs-install-v2ray"
exit 255