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
$ echo"console.log(Deno.execPath())"> foo.ts
$ deno compile -A foo.ts
$ ./foo
/src/foo
ln -s foo bar
$ ./bar
/src/foo
On macOS the output is /src/bar. Resolving the symlink is not typical, many tools use the name of the symlink to change behavior, which is what we are trying to do.
I will happily PR a fix, just point me at the relevant source file and where I should add a regression test. Thanks.