[Feature] 希望可以将配置文件自动重命名后保存
github-h opened this issue · 6 comments
github-h commented
Verify steps
- 我已经在 Issue Tracker 中找过我要提出的问题 I have searched on the issue tracker for a related issue.
- 我已经使用公测版本测试过,问题依旧存在 I have tested using the test mod, and the issue still exists.
- 我已经仔细看过 常见问题 并无法自行解决问题
Description
1.9.1rc10 使用6-2 完整的订阅信息配置功能时部分机场下载的配置文件并没有后缀名 这会导致脚本识别失败并直接打印了整个配置文件
希望能加一个不管获取的配置文件是何种形式,都自动更名为config.yaml并尝试导入
github-h commented
juewuy commented
```
sed -n "/^proxies:/,/^[a-z]/ { /^[a-z]/d; p; }" "$core_config_new" >"$TMPDIR"/proxies.yaml
if ! grep -q 'server:' "$TMPDIR"/proxies.yaml && ! grep -q 'proxy-providers:' "$core_config_new"; then
这是相关的判断逻辑
github-h commented