Skip to content

Commit

Permalink
fix: setup_nvm.sh Merge pull request #38 from Sergeant61/patch-1
Browse files Browse the repository at this point in the history
fix: setup_nvm.sh
  • Loading branch information
zodern authored Jan 31, 2024
2 parents e2ac0ff + c684f9b commit 467ec35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image/scripts/setup_nvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ echo "Node: $NODE_VERSION (parsed: $MAJOR_NODE_VERSION.$MINOR_NODE_VERSION.$PATC
if [[ $MAJOR_NODE_VERSION == "14" && $MINOR_NODE_VERSION -ge 21 && $PATCH_NODE_VERSION -ge 4 ]]; then
NODE_INSTALL_PATH="/home/app/.nvm/versions/node/v$NODE_VERSION"

if [ -f $NODE_INSTALL_PATH ]; then
if [ -d $NODE_INSTALL_PATH ]; then
echo "Meteor's custom v14 LTS Node version is already installed ($NODE_VERSION)"
else
echo "Using Meteor's custom NodeJS v14 LTS version"
Expand Down

0 comments on commit 467ec35

Please sign in to comment.