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.
15 lines
320 B
15 lines
320 B
![]()
9 years ago
|
#!/bin/sh
|
||
|
|
||
![]()
9 years ago
|
set -ex
|
||
|
|
||
![]()
7 years ago
|
\. ../../nvm.sh
|
||
|
\. ../common.sh
|
||
![]()
9 years ago
|
|
||
![]()
7 years ago
|
make_fake_node v0.0.1
|
||
|
sudo touch ""$(nvm_version_path v0.0.1)"/sudo"
|
||
![]()
9 years ago
|
|
||
![]()
9 years ago
|
RETURN_MESSAGE="$(nvm uninstall v0.0.1 2>&1 || echo)"
|
||
![]()
9 years ago
|
CHECK_FOR="Cannot uninstall, incorrect permissions on installation folder"
|
||
|
|
||
![]()
9 years ago
|
[ "${RETURN_MESSAGE#*$CHECK_FOR}" != "$RETURN_MESSAGE" ] || exit 1
|