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
I've found that Debain (and Ubuntu) dont support -s on which so the new rbenv code doesn't work so I get:
-----> Loading rbenv
Illegal option -s
! rbenv not found
! If rbenv is installed, check your :rbenv_path setting.
! Command failed.
Failed with status 1
If you remove -s on line 19 of mina/lib/rbenv.rb everything seems to work fine. I did a quick test on MacOS and Debian to make sure everything will work as expected:
MacOS:
$ if ! which rbenv >/dev/null; then; echo "not pathed right"; fi
$ if ! which rvm >/dev/null; then; echo "not pathed right"; fi
not pathed right
Debian:
$ if ! which rbenv >/dev/null; then echo "not pathed right"; fi
$ if ! which rvm >/dev/null; then echo "not pathed right"; fi
not pathed right
So it works as expected on both without the -s
Should be a nice quick fix, didn't really feel it was worth opening a pull request to remove 3 characters.
The text was updated successfully, but these errors were encountered:
I've found that Debain (and Ubuntu) dont support -s on
which
so the new rbenv code doesn't work so I get:If you remove -s on line 19 of mina/lib/rbenv.rb everything seems to work fine. I did a quick test on MacOS and Debian to make sure everything will work as expected:
MacOS:
Debian:
So it works as expected on both without the -s
Should be a nice quick fix, didn't really feel it was worth opening a pull request to remove 3 characters.
The text was updated successfully, but these errors were encountered: