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
{{ message }}
This repository has been archived by the owner on May 11, 2018. It is now read-only.
Various scripts in this repository use readlink with the -f flag to follow symlinks but this flag is not available under OSX. Using realpath could be an alternative but it does not come installed by default across systems. For OSX only, greadlink is available but platform specific calls should be avoided, also, it might not be installed and the user should not be forced to install anything (as the code from this repo should be as self-contained as possible).
The most viable alternative would be a pure shell implementation of realpath, added as a vendor script. Luckily such a thing exists.
It should be added and all offending scripts should be edited to use it.
The text was updated successfully, but these errors were encountered:
Various scripts in this repository use
readlink
with the-f
flag to follow symlinks but this flag is not available under OSX. Usingrealpath
could be an alternative but it does not come installed by default across systems. For OSX only,greadlink
is available but platform specific calls should be avoided, also, it might not be installed and the user should not be forced to install anything (as the code from this repo should be as self-contained as possible).The most viable alternative would be a pure shell implementation of realpath, added as a vendor script. Luckily such a thing exists.
It should be added and all offending scripts should be edited to use it.
The text was updated successfully, but these errors were encountered: