Skip to content

Commit 41f8787

Browse files
committed
Update install.sh
1 parent 1e8674a commit 41f8787

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

push-validator-manager/install.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# bash install.sh # default: reset data, build if needed, init+start, wait for sync
55
# bash install.sh --no-reset --no-start # install only
66
# bash install.sh --use-local # use current repo checkout to build
7-
# PNM_REF=feature/pnm bash install.sh # clone specific ref (branch/tag)
7+
# PNM_REF=v1.0.0 bash install.sh # clone specific ref (branch/tag)
88

99
set -euo pipefail
1010
IFS=$'\n\t'
@@ -420,7 +420,7 @@ CHAIN_ID="${CHAIN_ID:-push_42101-1}"
420420
SNAPSHOT_RPC="${SNAPSHOT_RPC:-https://rpc-testnet-donut-node2.push.org}"
421421
RESET_DATA="${RESET_DATA:-yes}"
422422
AUTO_START="${AUTO_START:-yes}"
423-
PNM_REF="${PNM_REF:-feature/pnm}"
423+
PNM_REF="${PNM_REF:-main}"
424424
BIN_DIR="${BIN_DIR:-$HOME/.local/bin}"
425425
PREFIX="${PREFIX:-}"
426426

@@ -481,7 +481,7 @@ while [[ $# -gt 0 ]]; do
481481
echo "Environment Variables:"
482482
echo " NO_COLOR Set to disable colors"
483483
echo " VERBOSE Set to 'yes' for verbose output"
484-
echo " PNM_REF Git ref for push-validator-manager (default: feature/pnm)"
484+
echo " PNM_REF Git ref for push-validator-manager (default: main)"
485485
echo " PCHAIND_REF Git ref for pchaind binary"
486486
echo
487487
echo "Examples:"
@@ -793,7 +793,7 @@ if [[ ! -d "$REPO_DIR/push-validator-manager" ]]; then
793793
if [[ -n "$LOCAL_CANDIDATE" && -d "$LOCAL_CANDIDATE/push-validator-manager" ]]; then
794794
warn "Try: bash push-validator-manager/install.sh --use-local"
795795
fi
796-
warn "Or specify a branch/tag that contains it: PNM_REF=feature/pnm bash push-validator-manager/install.sh"
796+
warn "Or specify a branch/tag that contains it: PNM_REF=main bash push-validator-manager/install.sh"
797797
exit 1
798798
fi
799799

0 commit comments

Comments
 (0)