Skip to content

Commit

Permalink
Moved yarn install command to correct location
Browse files Browse the repository at this point in the history
  • Loading branch information
sfaber34 committed Nov 1, 2024
1 parent 1f868da commit 1ef1e90
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions packages/nextjs/public/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ while getopts ":e:c:h" opt; do
esac
done

echo "🕸 Execution client selected: $e"
echo -e "🕸 Consensus client selected: $c\n"
echo "🎛️ Execution client selected: $e"
echo -e "🎛️ Consensus client selected: $c\n"

os_name=$(uname -s)

Expand Down Expand Up @@ -234,9 +234,9 @@ else
echo -e "\n⌛️ Updating buidlguidl-client repo"
cd "$HOME/buidlguidl-client"
git pull
yarn install
fi

cd "$HOME/buidlguidl-client"
yarn install
node index.js

6 changes: 3 additions & 3 deletions packages/nextjs/public/runBuidlGuidlClient.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ while getopts ":e:c:h" opt; do
esac
done

echo "🕸 Execution client selected: $e"
echo -e "🕸 Consensus client selected: $c\n"
echo "🎛️ Execution client selected: $e"
echo -e "🎛️ Consensus client selected: $c\n"

os_name=$(uname -s)

Expand Down Expand Up @@ -234,9 +234,9 @@ else
echo -e "\n⌛️ Updating buidlguidl-client repo"
cd "$HOME/buidlguidl-client"
git pull
yarn install
fi

cd "$HOME/buidlguidl-client"
yarn install
node index.js

0 comments on commit 1ef1e90

Please sign in to comment.