Skip to content
This repository was archived by the owner on Jun 16, 2026. It is now read-only.

Commit 7f982bd

Browse files
authored
Merge pull request #9 from tailor-platform/fix-load
fix: correct assignment of working directory path
2 parents 484cb16 + b651c24 commit 7f982bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func Load() (*Config, error) {
106106
if !os.IsNotExist(err) {
107107
return nil, err
108108
}
109-
wd := filepath.Dir(wd)
109+
wd = filepath.Dir(wd)
110110
if wd == "/" || wd == "." {
111111
break
112112
}

0 commit comments

Comments
 (0)