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
hubot> hubot shellcmd
hubot> spawn!
readlink: illegal option -- f
usage: readlink [-n] [file ...]
ls: ./handlers: No such file or directory
available commands:
Activity
Harwood commentedon Dec 16, 2016
I ran into this issue. If this is being run on macOS then the GNU version of readlink needs to be installed.
brew install coreutils
Replace instances of
readlink
withgreadlink
inbash/handler
and all files inbash/handlers/
.coderofsalvation commentedon Dec 20, 2016
Thx for the solution. Probably
brew install coreutils --default-names
will makereadlink
directly available (and link greadlink to readlink).