Skip to content

Commit 97f1efb

Browse files
committed
feat!: disable --force-bin-dir if --data is abs
related issues: #2580 #2542 after this commit, the `--force-bin-dir` would take no effect if `--data` is absolute path
1 parent bf8b6f4 commit 97f1efb

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

internal/bootstrap/config.go

+7-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,14 @@ import (
1313

1414
func InitConfig() {
1515
if flags.ForceBinDir {
16-
ex, err := os.Executable()
17-
if err != nil {
18-
utils.Log.Fatal(err)
16+
if !filepath.IsAbs(flags.DataDir) {
17+
ex, err := os.Executable()
18+
if err != nil {
19+
utils.Log.Fatal(err)
20+
}
21+
exPath := filepath.Dir(ex)
22+
flags.DataDir = filepath.Join(exPath, flags.DataDir)
1923
}
20-
exPath := filepath.Dir(ex)
21-
flags.DataDir = filepath.Join(exPath, "data")
2224
}
2325
configPath := filepath.Join(flags.DataDir, "config.json")
2426
log.Infof("reading config file: %s", configPath)

0 commit comments

Comments
 (0)