Forced the evaluation of symlinks

This commit is contained in:
Eduard Urbach 2025-02-04 00:00:43 +01:00
parent 2d592169e4
commit 00e7216256
Signed by: eduard
GPG key ID: 49226B848C78F6C8

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 {