You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
262 B
11 lines
262 B
#!/bin/sh
|
|
source ../common.sh
|
|
|
|
# Check nvm isn't already installed
|
|
[[ ! -f "$NVM_DIR/nvm.sh" ]] || die "nvm is already installed $NVM_DIR/nvm.sh"
|
|
|
|
# Load zsh-nvm
|
|
load_zsh_nvm
|
|
|
|
# Check nvm is now installed
|
|
[[ -f "$NVM_DIR/nvm.sh" ]] || die "nvm wasn't installed"
|
|
|