mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-21 01:27:03 -05:00
filter .json in confDir
This commit is contained in:
parent
5ae47d45c2
commit
c3f55dcd67
@ -41,7 +41,9 @@ func (c *ConfigCommand) Execute(args []string) error {
|
||||
r, err := c.LoadArg(arg)
|
||||
common.Must(err)
|
||||
c, err := serial.DecodeJSONConfig(r)
|
||||
common.Must(err)
|
||||
if err != nil {
|
||||
ctllog.Fatalln(err)
|
||||
}
|
||||
conf.Override(c, arg)
|
||||
}
|
||||
|
||||
|
@ -46,7 +46,9 @@ func readConfDir(dirPath string) {
|
||||
log.Fatalln(err)
|
||||
}
|
||||
for _, f := range confs {
|
||||
configFiles.Set(path.Join(dirPath, f.Name()))
|
||||
if strings.HasSuffix(f.Name(), ".json") {
|
||||
configFiles.Set(path.Join(dirPath, f.Name()))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user