Skip to content

Commit 58df80f

Browse files
authored
Merge pull request #255 from put-go/master
删除密钥和订阅应为空
2 parents 30d426c + e8e4598 commit 58df80f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

scripts/core/config.sh

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,7 @@ config_allow_lan() {
394394
set_config_allow_lan() {
395395
local value="$1"
396396
local file="$CONFIG_DIR/template.yaml"
397+
local mixin_file_path
397398

398399
case "$value" in
399400
true|false) ;;
@@ -404,6 +405,13 @@ set_config_allow_lan() {
404405
ALLOW_LAN_VALUE="$value" "$(yq_bin)" eval -i '
405406
.["allow-lan"] = (env(ALLOW_LAN_VALUE) == "true")
406407
' "$file"
408+
409+
ensure_mixin_file
410+
mixin_file_path="$(mixin_file)"
411+
ALLOW_LAN_VALUE="$value" "$(yq_bin)" eval -i '
412+
.override = (.override // {}) |
413+
.override["allow-lan"] = (env(ALLOW_LAN_VALUE) == "true")
414+
' "$mixin_file_path"
407415
}
408416

409417
subscription_url_scheme() {

0 commit comments

Comments
 (0)