Skip to content

Commit

Permalink
feat: explicit clone main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
Glitch18 committed Nov 18, 2024
1 parent 1594833 commit 9210233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ echo "/home/node/.pm2/logs/*.log /home/node/app/cli/build/logs/*.log {

# Pull latest versions of the CLI and GUI from gui-updates branch

git clone https://github.com/shardeum/validator-cli.git cli
git clone -b main https://github.com/shardeum/validator-cli.git cli

echo "Install the CLI"
cd cli
npm i --silent && npm link
cd ..

git clone https://github.com/shardeum/validator-gui.git gui
git clone -b main https://github.com/shardeum/validator-gui.git gui

echo "Install the GUI"
cd gui
Expand Down
2 changes: 1 addition & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ if [ -d "$NODEHOME" ]; then
fi
fi

git clone https://github.com/shardeum/validator-dashboard.git ${NODEHOME} || { echo "Error: Permission denied. Exiting script."; exit 1; }
git clone -b main https://github.com/shardeum/validator-dashboard.git ${NODEHOME} || { echo "Error: Permission denied. Exiting script."; exit 1; }
cd ${NODEHOME}
chmod a+x ./*.sh

Expand Down

0 comments on commit 9210233

Please sign in to comment.