When using Rye on Windows (which works great by the way!) there's always an error message System cannot find the path specified when initializing a Rye::Box.
I guess this is because of
@rye_stty_save = `stty -g 2>/dev/null`.chomp rescue nil
which could probably be changed to something like
@rye_stty_save = `stty -g 2>/dev/null`.chomp unless Rye.sysinfo.os == :windows rescue nil
in Rye::Box (and also in Rye::Hop I guess).
I didn't make a PR because it seems like there is already a pending PR #56 which also works on that code (on a slightly different matter) and recently there seems to be no more activity in the repo. I'd be happy to make one though if there's still interest...
When using Rye on Windows (which works great by the way!) there's always an error message
System cannot find the path specifiedwhen initializing aRye::Box.I guess this is because of
which could probably be changed to something like
in
Rye::Box(and also inRye::HopI guess).I didn't make a PR because it seems like there is already a pending PR #56 which also works on that code (on a slightly different matter) and recently there seems to be no more activity in the repo. I'd be happy to make one though if there's still interest...