From aa2d534f4002f3966ffc87cb55689df28705c9af Mon Sep 17 00:00:00 2001 From: wulabing Date: Sat, 15 Feb 2020 21:10:18 +0800 Subject: [PATCH] =?UTF-8?q?1.1.0=20=E6=97=A7=E9=85=8D=E7=BD=AE=E4=BF=9D?= =?UTF-8?q?=E7=95=99bug=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index b33b1bd..e3cb174 100644 --- a/install.sh +++ b/install.sh @@ -504,16 +504,16 @@ v2ray_conf_add_h2(){ old_config_exist_check(){ if [[ -f $v2ray_qr_config_file ]] then - echo -e "${OK} ${Green} 检测到旧配置文件,是否读取旧文件配置 [Y/N]?" - read -r "" + echo -e "${OK} ${Green} 检测到旧配置文件,是否读取旧文件配置 [Y/N]? ${Font}" + read -r ssl_delete case $ssl_delete in [yY][eE][sS]|[yY]) - echo -e "${OK} ${Green} 已保留旧配置 [Y/N]?" + echo -e "${OK} ${Green} 已保留旧配置 [Y/N]? ${Font}" old_config_status="on" ;; *) rm -rf $v2ray_qr_config_file - echo -e "${OK} ${Green} 已删除旧配置 [Y/N]?" + echo -e "${OK} ${Green} 已删除旧配置 [Y/N]? ${Font}" ;; esac fi