Last active
October 13, 2015 00:18
-
-
Save Raven24/4109798 to your computer and use it in GitHub Desktop.
RVM with no-root ensurance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# this script installs rvm with the most recent stable version of ruby | |
# and makes sure it is not run as root, | |
# based on my earlier attempt for a general purpose root avoidance | |
# https://gist.github.com/3930399 | |
# the command we'll be running | |
export RVM_CMD="curl -L https://get.rvm.io | bash -s stable" | |
# put some colors in there | |
case "$TERM" in | |
xterm*|rxvt*) | |
read -r red RED cyan CYAN NC <<'EOT' | |
\033[0;31m \033[1;31m \033[0;36m \033[1;36m \033[0m | |
EOT | |
;; | |
esac | |
# don't run as root! | |
if [ `id -u` -eq 0 ] ; then | |
printf "${red}don't run this script as ${RED}root${red}!${NC}\n" | |
exit 1 | |
fi | |
# execute | |
eval "$RVM_CMD" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment