Skip to content

Commit

Permalink
Fix for install confirm function
Browse files Browse the repository at this point in the history
  • Loading branch information
sfaber34 committed Jun 11, 2024
1 parent 0a017e0 commit 7dd10a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/nextjs/public/runBuidlGuidlClient.sh
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ if [ "$os_name" = "Linux" ]; then
echo -e "\n✅ Node is installed. Version:"
node -v
else
read -r -p "❓ Node is not installed. Do you want to install it? [y/N] " -n 1
if [[ "$REPLY" =~ ^[Yy]$ ]]; then
read -r -p "❓ Node is not installed. Do you want to install it? [y/N] " response
if [[ "$response" =~ ^[Yy]$ ]]; then
echo -e "\n💪 Installing Node"
cd ~
curl -fsSL https://deb.nodesource.com/setup_lts.x | sudo -E bash -
Expand Down

0 comments on commit 7dd10a6

Please sign in to comment.