mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
944255f879
Support for automatically handling .rvmrc files in projects is being deprecated in POW version 0.4.0 and beyond. RVM will still work but project will need to have a .powrc file that detects the presence of and then loads RVM. The code in the .powrc could also be in the .powenv file, however the .powrc loads first and is the configuration file recommended for inclusion in version control.
5 lines
116 B
Plaintext
5 lines
116 B
Plaintext
if [ -f "$rvm_path/scripts/rvm" ] && [ -f ".rvmrc" ] ; then
|
|
source "$rvm_path/scripts/rvm"
|
|
source ".rvmrc"
|
|
fi
|
|
|