Forced the evaluation of symlinks

This commit is contained in:
Eduard Urbach 2025-02-04 00:00:43 +01:00
parent fff21230d7
commit fc1b970f7f
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0

View File

@ -25,6 +25,12 @@ func init() {
panic(err)
}
Executable, err = filepath.EvalSymlinks(Executable)
if err != nil {
panic(err)
}
WorkingDirectory, err = os.Getwd()
if err != nil {