Extra node check
This commit is contained in:
parent
f765e8f4e9
commit
d05ed7ef30
|
@ -165,7 +165,10 @@ function nodejs_upgrade {
|
|||
fi
|
||||
if grep -q "node_8.x" /etc/apt/sources.list.d/nodesource.list; then
|
||||
if [ -f /usr/local/bin/node ]; then
|
||||
return
|
||||
CURR_NODE_VERSION=$(node --version)
|
||||
if [[ "$CURR_NODE_VERSION" == "v${NODEJS_VERSION}" ]]; then
|
||||
return
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
if [ -f /usr/local/bin/node ]; then
|
||||
|
|
Loading…
Reference in New Issue