/home/techb158/.nvm/test/install_script
NameSizeModeActions
install_nvm_from_git41280775editdlrm
nvm_check_global_modules18460775editdlrm
nvm_detect_profile40390775editdlrm
nvm_download5270664editdlrm
nvm_do_install1870775editdlrm
nvm_install_dir6770775editdlrm
nvm_install_with_aliased_dot4540775editdlrm
nvm_install_with_node_version3030775editdlrm
nvm_profile_is_bash_or_zsh8170775editdlrm
nvm_reset13760775editdlrm
nvm_source31030775editdlrm
Edit: /home/techb158/.nvm/test/install_script/nvm_install_with_aliased_dot (454B)
#!/bin/sh setup() { # Needed to avoid to checkout the repo to the latest nvm version, losing the commits of the current PR unset NVM_DIR shopt -s expand_aliases alias .=':' NVM_ENV=testing \. ../../install.sh > /dev/null } cleanup () { unset -f setup cleanup die unalias . shopt -u expand_aliases } die () { echo "$@"; cleanup; exit 1; } setup nvm_do_install > /dev/null 2>&1 command -v nvm || die 'nvm could not be loaded' cleanup