Extra node check

This commit is contained in:
Bob Mottram 2018-03-30 11:32:41 +01:00
parent f765e8f4e9
commit d05ed7ef30
1 changed files with 4 additions and 1 deletions

View File

@ -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