Sha256: 0d837678adf723f74e6851651d44abb1841fa6d4303c151202ab88c3dd9367d0
Contents?: true
Size: 609 Bytes
Versions: 1
Compression:
Stored size: 609 Bytes
Contents
#!/usr/bin/env bash if [[ -z "$rvm_ignore_rvmrc" ]]; then [[ -s /etc/rvmrc ]] && source /etc/rvmrc [[ -s "$HOME/.rvmrc" ]] && source "$HOME/.rvmrc" fi rvm_path="${rvm_path:-$HOME/.rvm}" [ -d "$rvm_path/src" ] || mkdir -p $rvm_path/src/ cd "$rvm_path/src" [ -d ./rvm ] && rm -rf ./rvm/ git clone --depth 1 git://github.com/wayneeseguin/rvm.git || git clone http://github.com/wayneeseguin/rvm.git cd rvm && # v v v This is a good idea however it does not preserve the executible bit. # Needs more thought, perhaps a simple sed instead... # dos2unix scripts/* >/dev/null 2>&1 bash scripts/install
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rvm-0.1.45 | binscripts/rvm-update-head |