rbenv-win/libexec/rbenv-shell.bat
2023-07-01 07:23:51 +01:00

16 lines
395 B
Batchfile

@echo off
setlocal
if "%1" == "--help" (
echo Usage: rbenv shell ^<version^>
echo rbenv shell --unset
echo.
echo Sets a shell-specific Ruby version by setting the `RBENV_VERSION'
echo environment variable in your shell. This version overrides local
echo application-specific versions and the global version.
echo.
EXIT /B
)
rem Implementation of this command is in the rbenv.vbs file .