This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
# This script allows you to setup your node properly getting it | |
# ready for the Morpheus-13000 update. | |
# It will checkout and build the propery Desmos version, as well | |
# as setup your Systemd service. | |
# The only thing you have to do is run it giving it the first | |
# argument which is the path where you cloned the Desmos | |
# repository. | |
# E.g. | |
# ./morpheus-13000-update.sh ~/desmos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
echo '===> Stopping service' | |
sudo systemctl stop desmosd | |
echo '===> Building Desmos' | |
cd ~/desmos | |
git fetch --tags --force | |
git checkout tags/v0.17.2 | |
make build install |
OlderNewer