Skip to content

Commit

Permalink
Fix node install command
Browse files Browse the repository at this point in the history
  • Loading branch information
paularintaharri committed Apr 17, 2024
1 parent db2295b commit 4f1c162
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ selectNodeVersion
# Install Node.js version 18
echo "Installing Node.js version 18..."
NODE_VERSION="18"
curl -sL https://deb.nodesource.com/setup_$NODE_VERSION.x | sudo -E bash -
sudo apt-get install -y nodejs
curl -sL https://deb.nodesource.com/setup_$NODE_VERSION.x | bash -
apt-get install -y nodejs

# 3. Install Yarn
DESIRED_YARN_VERSION="1.22.22"
Expand Down

0 comments on commit 4f1c162

Please sign in to comment.