Merge pull request #6672 from linxiulei/fix_rel

Turn paths from cmdline into absolute paths
This commit is contained in:
Kazuyoshi Kato
2022-04-06 09:20:10 -07:00
committed by GitHub

View File

@@ -321,6 +321,13 @@ func applyFlags(context *cli.Context, config *srvconfig.Config) error {
} {
if s := context.GlobalString(v.name); s != "" {
*v.d = s
if v.name == "root" || v.name == "state" {
absPath, err := filepath.Abs(s)
if err != nil {
return err
}
*v.d = absPath
}
}
}