mirror of
https://github.com/lukechilds/zsh-nvm.git
synced 2025-01-30 09:47:14 +08:00
17 lines
421 B
Plaintext
Executable File
17 lines
421 B
Plaintext
Executable File
source ../common.sh
|
|
|
|
nvm_placeholder="nvm placeholder"
|
|
|
|
# Fake nvm installation
|
|
mkdir "$NVM_DIR"
|
|
echo "$nvm_placeholder" > "$NVM_DIR/nvm.sh"
|
|
|
|
# Check fake nvm file is there
|
|
[[ -f "$NVM_DIR/nvm.sh" ]] || die "Fake nvm file wasn't created"
|
|
|
|
# Load zsh-nvm
|
|
load_zsh_nvm
|
|
|
|
# Check fake nvm installation wasn't overwritten
|
|
[[ $(cat "$NVM_DIR/nvm.sh") == "$nvm_placeholder" ]] || die "Existing nvm installation was overwritten"
|