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.
13 lines
225 B
13 lines
225 B
#!/bin/sh
|
|
export test_dir=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
|
export repo_dir="$test_dir/.."
|
|
export NVM_DIR="$test_dir/.nvm"
|
|
|
|
die () {
|
|
echo $@
|
|
exit 1
|
|
}
|
|
|
|
load_zsh_nvm() {
|
|
source "$repo_dir/zsh-nvm.plugin.zsh"
|
|
}
|
|
|