diff --git a/fs.go b/fs.go index 2562da3..c6e6a1e 100644 --- a/fs.go +++ b/fs.go @@ -31,11 +31,11 @@ func GetProjectRoot() (string, error) { exeDir := filepath.Dir(exePath) - // adjust depending on your structure - // e.g. binary is in /project/bin/app → go up one level - root := filepath.Dir(exeDir) + // // adjust depending on your structure + // // e.g. binary is in /project/bin/app → go up one level + // root := filepath.Dir(exeDir) - return root, nil + return exeDir, nil }