Skip to content

Commit

Permalink
install - fix branch name, remove git reset
Browse files Browse the repository at this point in the history
  • Loading branch information
coincashew committed Jul 30, 2024
1 parent a22ad99 commit 422ede9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion install-nimbus-nethermind.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ linux_update_pip() {
linux_install_validator-install() {
ohai "Cloning ethpillar into ~/git/ethpillar"
mkdir -p ~/git/ethpillar
git clone https://github.com/coincashew/ethpillar.git ~/git/ethpillar 2> /dev/null || (cd ~/git/ethpillar ; git fetch origin master ; git checkout master ; git pull)
git clone https://github.com/coincashew/ethpillar.git ~/git/ethpillar 2> /dev/null || (cd ~/git/ethpillar ; git fetch origin main ; git checkout main ; git pull)
ohai "Installing validator-install"
$python ~/git/ethpillar/deploy-nimbus-nethermind.py
ohai "Allowing user to view journalctl logs"
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ linux_install_pre() {
linux_install_installer() {
ohai "Cloning ethpillar into ~/git/ethpillar"
mkdir -p ~/git/ethpillar
git clone https://github.com/coincashew/ethpillar.git ~/git/ethpillar/ 2> /dev/null || (cd ~/git/ethpillar ; git fetch origin main ; git checkout main ; git pull --ff-only ; git reset --hard)
git clone https://github.com/coincashew/ethpillar.git ~/git/ethpillar/ 2> /dev/null || (cd ~/git/ethpillar ; git fetch origin main ; git checkout main ; git pull)
chmod +x ~/git/ethpillar/*.sh
ohai "Installing ethpillar"
if [ -f /usr/local/bin/ethpillar ]; then
Expand Down

0 comments on commit 422ede9

Please sign in to comment.