You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
detector/file: pwd symlink should be determined with EvalSymlinks
We were using `ReadLink` before which read the exact link.
Unfortunately, we want to evaluate this link relative to the pwd if it
is an absolute path otherwise we evaluate the symlink incorrectly.
For example, if the pwd is set to "/foo/fake" and the value is
"../real", but we're evaluating go-getter from the real shell pwd of
"/bar", then we'd turn "/foo/fake" into "/bar/real". The behavior of
shells is to take it relative to its location, not your pwd. This
preserves that.
0 commit comments