mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 22:23:31 +03:00
Fix: don't read yml if not exist (#253)
This commit is contained in:
parent
528fbd10e4
commit
288afd1308
1 changed files with 5 additions and 1 deletions
|
@ -106,7 +106,11 @@ func readRawConfig(path string) ([]byte, error) {
|
|||
}
|
||||
|
||||
path = path[:len(path)-5] + ".yml"
|
||||
return ioutil.ReadFile(path)
|
||||
if _, err = os.Stat(path); err == nil {
|
||||
return ioutil.ReadFile(path)
|
||||
}
|
||||
|
||||
return data, nil
|
||||
}
|
||||
|
||||
func readConfig(path string) (*rawConfig, error) {
|
||||
|
|
Loading…
Add table
Reference in a new issue