Ensure that node modules are removed
This commit is contained in:
parent
40085c5c0f
commit
2de956b687
|
@ -93,6 +93,9 @@ function remove_nodejs {
|
|||
if [ -f /usr/bin/node ]; then
|
||||
rm /usr/bin/node
|
||||
fi
|
||||
if [ -d /usr/lib/node_modules ]; then
|
||||
rm -rf /usr/lib/node_modules
|
||||
fi
|
||||
|
||||
remove_app nodejs
|
||||
|
||||
|
|
Loading…
Reference in New Issue