mirror of
https://github.com/fluencelabs/tendermint
synced 2025-07-25 01:01:56 +00:00
.github
DOCKER
benchmarks
blockchain
cmd
config
consensus
docs
mempool
node
proxy
rpc
scripts
debora
unsafe_debug_net.sh
unsafe_reset_net.sh
unsafe_start_group.sh
unsafe_stop_group.sh
unsafe_upgrade_barak.sh
unsafe_upgrade_group.sh
glide
tendermint-builder
txs
README.md
dist.sh
dist_build.sh
install_abci_apps.sh
publish.sh
state
test
types
version
.codecov.yml
.editorconfig
.gitignore
CHANGELOG.md
CONTRIBUTING.md
INSTALL.md
LICENSE
Makefile
README.md
Vagrantfile
circle.yml
glide.lock
glide.yaml
10 lines
218 B
Bash
10 lines
218 B
Bash
![]() |
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
IFS=$'\n\t'
|
||
|
|
||
|
printf "Upgrading group $1...\n"
|
||
|
sleep 3
|
||
|
|
||
|
debora --group "$1" run -- bash -c "cd \$GOPATH/src/github.com/tendermint/tendermint; git pull origin develop; make"
|
||
|
printf "Done\n"
|