Add sh directive and replace bash function with sh function.

master
Cliffano Subagio 2013-06-21 17:56:58 +10:00
parent 36ce8f0010
commit ab71d50b3a
1 changed files with 6 additions and 2 deletions

8
nvm.sh
View File

@ -1,3 +1,5 @@
#!/bin/sh
# Node Version Manager
# Implemented as a bash function
# To use source this file from your bash profile
@ -16,7 +18,8 @@ if [ ! -z "$(which unsetopt 2>/dev/null)" ]; then
unsetopt nomatch 2>/dev/null
fi
function nvm_set_nullglob {
nvm_set_nullglob()
{
if type setopt > /dev/null 2>&1; then
# Zsh
setopt NULL_GLOB
@ -27,7 +30,8 @@ function nvm_set_nullglob {
}
# Obtain nvm version from rc file
function rc_nvm_version {
rc_nvm_version()
{
if [ -e .nvmrc ]; then
RC_VERSION=`cat .nvmrc | head -n 1`
echo "Found .nvmrc files with version <$RC_VERSION>"