If you type the command in console, it works.
But if you put them in a bash script, problem comes.
#!/bin/bash
rvm use 1.8.7
rvm list # This shows the ruby used in parent shell's rvm.
|
|
|
In the script you are most likely not loading rvm as a function. |
|||||||||
|
|
The shell functions installed by RVM aren't necessarily exported to subshells. In your shell script, you can re-initialize RVM with something like the same command line that's in your .bash_profile or .bashrc:
After you do that, the rvm functions will be available within the shell script. |
||||
|
|
Try to run |
|||
|
|
You do not need the
But if you really want the
|
|||||||
|
|
From the rvm documentation, it sets up the current shell. When you execute a shell script, you are executing a new shell process. That new process dies when the script ends, so the updates made by To script this, you'll need to do something more like this:
This will (hopefully) drop you into a shell process with the updated environment provided by Alternatively, you count set up an alias that will modify your current shell environment:
Add that line to your |
|||||
|