* Using raw.github.com instead, downloading only nvm.sh

* tar no longer required
master
stelcheck 2013-06-14 16:15:54 +09:00
parent dc46a740a3
commit f82cde11a9
1 changed files with 17 additions and 15 deletions

View File

@ -1,23 +1,25 @@
#!/bin/bash #!/bin/bash
# an alternative URL that could be used: https://github.com/creationix/nvm/tarball/master function fatalExit (){
TARBALL_URL="https://api.github.com/repos/creationix/nvm/tarball" echo "$@" && exit 1;
NVM_TARGET="$HOME/.nvm" }
if [ -d "$NVM_TARGET" ]; then # an alternative URL that could be used: https://github.com/creationix/nvm/tarball/master
echo "=> NVM is already installed in $NVM_TARGET, trying to update" if [ "$NVM_SOURCE" == "" ]; then
rm -rf "$NVM_TARGET" NVM_SOURCE="https://raw.github.com/creationix/nvm/master/nvm.sh"
fi fi
# Downloading to $NVM_TARGET if [ "$NVM_DIR" == "" ]; then
mkdir "$NVM_TARGET" NVM_DIR="$HOME/.nvm"
pushd "$NVM_TARGET" > /dev/null fi
echo -ne "=> "
curl --silent -L "$TARBALL_URL" | tar -xz --strip-components=1 || exit 1
echo -n Downloaded
popd > /dev/null
echo # Downloading to $NVM_DIR
mkdir -p "$NVM_DIR"
pushd "$NVM_DIR" > /dev/null
echo -ne "=> Downloading... "
curl --silent "$NVM_SOURCE" -o nvm.sh || fatalExit "Failed";
echo "Downloaded"
popd > /dev/null
# Detect profile file, .bash_profile has precedence over .profile # Detect profile file, .bash_profile has precedence over .profile
if [ ! -z "$1" ]; then if [ ! -z "$1" ]; then
@ -30,7 +32,7 @@ else
fi fi
fi fi
SOURCE_STR="[[ -s "$NVM_TARGET/nvm.sh" ]] && . "$NVM_TARGET/nvm.sh" # This loads NVM" SOURCE_STR="[[ -s "$NVM_DIR/nvm.sh" ]] && . "$NVM_TARGET/nvm.sh" # This loads NVM"
if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then if [ -z "$PROFILE" ] || [ ! -f "$PROFILE" ] ; then
if [ -z $PROFILE ]; then if [ -z $PROFILE ]; then