vito/resources/views/ssh/services/nodejs/uninstall-nodejs.blade.php
Saeed Vaziry cdbde063f0
use blade as conmmands template (#444)
* use blade as conmmands template

* fix lint

* fix ssl
2025-01-27 21:27:58 +01:00

16 lines
315 B
PHP
Executable File

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
@if ($default)
if ! nvm unalias default; then
echo 'VITO_SSH_ERROR' && exit 1
fi
if ! nvm deactivate; then
echo 'VITO_SSH_ERROR' && exit 1
fi
@endif
if ! nvm uninstall {{ $version }}; then
echo 'VITO_SSH_ERROR' && exit 1
fi