Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
Changes to install node LTS if node is not already installed. (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanzlamateen authored Sep 7, 2023
1 parent d79a063 commit d12ce5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/scripts/check-node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ if $INSTALL_NODE; then
NVM_VERSION=$(nvm --version)
echo "nvm version is $NVM_VERSION"

nvm install node
nvm install --lts
echo "node is installed"
fi

Expand Down
2 changes: 1 addition & 1 deletion assets/scripts/configure-microk8s-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ if $INSTALL_NODE; then
NVM_VERSION=$(nvm --version)
echo "nvm version is $NVM_VERSION"

nvm install node
nvm install --lts
echo "node is installed"
fi

Expand Down
2 changes: 1 addition & 1 deletion assets/scripts/configure-minikube-linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ if $INSTALL_NODE; then
NVM_VERSION=$(nvm --version)
echo "nvm version is $NVM_VERSION"

nvm install node
nvm install --lts
echo "node is installed"
fi

Expand Down

0 comments on commit d12ce5a

Please sign in to comment.