Simplified config package

This commit is contained in:
2025-02-17 23:36:11 +01:00
parent b7685fd7ec
commit 3b76919fec
10 changed files with 68 additions and 66 deletions

View File

@ -2,7 +2,6 @@ package config
import (
"os"
"path"
"path/filepath"
"runtime/debug"
)
@ -45,22 +44,3 @@ func init() {
findLibrary()
}
}
func findLibrary() {
dir := WorkingDirectory
for {
Library = path.Join(dir, "lib")
stat, err := os.Stat(Library)
if !os.IsNotExist(err) && stat != nil && stat.IsDir() {
return
}
if dir == "/" {
panic("standard library not found")
}
dir = filepath.Dir(dir)
}
}