Skip to content

Commit

Permalink
del config dont get ip
Browse files Browse the repository at this point in the history
  • Loading branch information
233boy committed Dec 5, 2024
1 parent 7270c1a commit 86bb946
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,7 @@ check_status() {
# dependent pkg install fail
[[ ! -f $is_pkg_ok ]] && {
msg err "安装依赖包失败"
msg err "请尝试手动安装依赖包: $cmd update -y; $cmd install -y $pkg"
is_fail=1
}

Expand Down
5 changes: 4 additions & 1 deletion src/core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ get_uuid() {
}

get_ip() {
[[ $ip || $is_no_auto_tls || $is_gen ]] && return
[[ $ip || $is_no_auto_tls || $is_gen || $is_dont_get_ip ]] && return
export "$(_wget -4 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && export "$(_wget -6 -qO- https://one.one.one.one/cdn-cgi/trace | grep ip=)" &>/dev/null
[[ ! $ip ]] && {
Expand Down Expand Up @@ -732,6 +732,8 @@ change() {

# delete config.
del() {
# dont get ip
is_dont_get_ip=1
[[ $is_conf_dir_empty ]] && return # not found any json file.
# get a config file
[[ ! $is_config_file ]] && get info $1
Expand Down Expand Up @@ -761,6 +763,7 @@ del() {
warn "当前配置目录为空! 因为你刚刚删除了最后一个配置文件."
is_conf_dir_empty=1
fi
unset is_dont_get_ip
[[ $is_dont_auto_exit ]] && unset is_config_file
}

Expand Down
2 changes: 1 addition & 1 deletion v2ray.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

args=$@
is_sh_ver=v4.22
is_sh_ver=v4.23

. /etc/v2ray/sh/src/init.sh

0 comments on commit 86bb946

Please sign in to comment.