Skip to content

Commit

Permalink
Updated installation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
wayneeseguin committed Jan 17, 2010
1 parent 90ec759 commit 4195b82
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
11 changes: 3 additions & 8 deletions scripts/install
Expand Up @@ -144,21 +144,16 @@ $rvm_scripts_path/notes

echo -e "$(tput setaf 2)RTFM: $(tput sgr0) http://rvm.beginrescueend.com/"
echo -e "\n$(tput setaf 2)HELP: $(tput sgr0) http://webchat.freenode.net/?channels=rvm "
echo "================================================================================"
echo -e "\n********************************************************************************"
name="$(awk -F= '/^[[:space:]]*name/{print $2}' ~/.gitconfig 2>/dev/null)"
echo -e "\n${name:-"$(whoami)"},\n"
echo -e "\nThank you for using rvm. I hope that it makes your work easier and more enjoyable."
echo -e "If you have any questions, issues and/or ideas for improvement please hop in #rvm on irc.freenode.net and let me know."
echo -e "My irc nickname is 'wayneeseguin' and I hang out from ~09:00-17:00EST and again from ~21:00EST-~00:00EST."
echo -e "If I do not respond right away, please hang around after asking your question, I will respond as soon as I am back."
echo -e "\n w$(tput setaf 2)⦿‿⦿$(tput sgr0)t!"
echo -e "\n ~ Wayne\n"
echo "================================================================================"
echo -e "Upgrades"
echo -e "Gems are now per interpreter installation instead of per interpreter/version"
echo -e "so for example to upgrade an older install of 1.8.6 and preserve gems:"
echo -e "rm -rf ~/.rvm/gems/ruby-1.8.6-p383 ; mv ~/.rvm/gems/ruby/1.8.6 ~/.rvm/gems/ruby-1.8.6-p383"
echo "================================================================================"
echo -e "\n ~ Wayne"
echo -e "\n********************************************************************************"
echo -e "\n$(tput setaf 1)You must now finish the install manually:$(tput sgr0)"
echo -e "\n1) Place the folowing line at the end of your shell's loading files(.bashrc and then .bash_profile for bash and .zshrc for zsh), after all path/variable settings:"
echo -e "\n if [[ -s $rvm_path/scripts/rvm ]] ; then source $rvm_path/scripts/rvm ; fi"
Expand Down
8 changes: 8 additions & 0 deletions scripts/notes
Expand Up @@ -3,6 +3,14 @@
system="$(uname)"
item="$(tput setaf 2)* $(tput sgr0)"

echo -e "\n$(tput setaf 6)**** NOTICE *************************************************************************************"
echo -e "* The rubies install path has moved to \$rvm_path/rubies/ instead of directly in \$rvm_path. *"
echo -e "* If you encounter any issues with a ruby your best bet is to 'rvm remove X ; rvm install X' *"
echo -e "* Gems are now per interpreter installation instead of per interpreter/version *"
echo -e "* so for example to upgrade an older install of 1.8.6 and preserve gems: *"
echo -e "* rm -rf ~/.rvm/gems/ruby-1.8.6-p383 ; mv ~/.rvm/gems/ruby/1.8.6 ~/.rvm/gems/ruby-1.8.6-p383 *"
echo -e "*************************************************************************************************$(tput sgr0)\n"

if [[ "Linux" = "$system" ]] ; then
for file in /etc/*-release ; do
release="( $(cat $file) )" ; break
Expand Down

0 comments on commit 4195b82

Please sign in to comment.