diff --git a/update.sh b/update.sh new file mode 100644 index 0000000..d5e875e --- /dev/null +++ b/update.sh @@ -0,0 +1,22 @@ +#!/bin/bash + +# Stop the ceremonyclient service +service ceremonyclient stop + +# Switch to the ~/ceremonyclient directory +cd ~/ceremonyclient + +# Fetch updates from the remote repository +git fetch origin +git merge origin + +# Switch to the ~/ceremonyclient/node directory +cd ~/ceremonyclient/node + +# Clean and reinstall node +GOEXPERIMENT=arenas go clean -v -n -a ./... +rm /root/go/bin/node +GOEXPERIMENT=arenas go install ./... + +# Start the ceremonyclient service +service ceremonyclient start \ No newline at end of file