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
In the example for creating symlinks in the README, one would expect that fs.existsSync("/some/dir/a-symlink") returns true, but it actually returns false, because exists expects absolute symlink paths. It probably needs a path.resolve, like the open implementation.
The text was updated successfully, but these errors were encountered:
In the example for creating symlinks in the README, one would expect that
fs.existsSync("/some/dir/a-symlink")
returns true, but it actually returns false, because exists expects absolute symlink paths. It probably needs apath.resolve
, like theopen
implementation.The text was updated successfully, but these errors were encountered: