Skip to content

Instantly share code, notes, and snippets.

@ForboleDevelopment
ForboleDevelopment / morpheus-13000-update.sh
Last active January 19, 2021 06:58
Commands that should be run in order to update from morpheus-10000 to morpheus-13000 seamlessly
#!/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
@ForboleDevelopment
ForboleDevelopment / morpheus-apollo-2-update.sh
Created July 12, 2021 11:40
Commands that should be run in order to update from morpheus-apollo-1 to morpheus-apollo-2 seamlessly
#!/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