%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
#!/bin/sh cleanup () { unset -f safe_type die cleanup } die () { echo "$@" ; cleanup ; exit 1; } safe_type() { type "$1" } # precondition: the names should be unset ! safe_type nvm_do_install || die 'nvm_do_install is still available' ! safe_type nvm_has || die 'nvm_has is still available' ! safe_type nvm_download || die 'nvm_download is still available' ! safe_type install_nvm_as_script || die 'install_nvm_as_script is still available' ! safe_type install_nvm_from_git || die 'install_nvm_from_git is still available' ! safe_type nvm_reset || die 'nvm_reset is still available' ! safe_type nvm_detect_profile || die 'nvm_detect_profile is still available' NVM_ENV=testing \. ../../install.sh # Check nvm_reset exists safe_type nvm_reset || die 'nvm_reset is not available' # Apply nvm_reset nvm_reset || die 'nvm_reset failed' # The names should be unset ! safe_type nvm_do_install || die 'nvm_do_install is still available' ! safe_type nvm_has || die 'nvm_has is still available' ! safe_type nvm_download || die 'nvm_download is still available' ! safe_type install_nvm_as_script || die 'install_nvm_as_script is still available' ! safe_type install_nvm_from_git || die 'install_nvm_from_git is still available' ! safe_type nvm_reset || die 'nvm_reset is still available' ! safe_type nvm_detect_profile || die 'nvm_detect_profile is still available' cleanup