mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00
14 lines
147 B
Bash
Executable File
14 lines
147 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
ALIAS_PATH="../../alias"
|
|
|
|
echo v0.1.2 > "${ALIAS_PATH}/test"
|
|
|
|
\. ../../nvm.sh
|
|
|
|
nvm unalias test
|
|
|
|
! [ -e "${ALIAS_PATH}/test" ]
|