node.sh -Z ⇒ -y, to reduce case confusion

Suggested-by: Rongjian Lan <rongjian@harmony.one>
pull/1939/head
Eugene Kim 5 years ago
parent 977581e2a8
commit 237230e8a9
  1. 6
      scripts/node.sh

@ -117,7 +117,7 @@ usage: ${progname} [-1ch] [-k KEYFILE]
-v print out the version of the node.sh -v print out the version of the node.sh
-V print out the version of the Harmony binary -V print out the version of the Harmony binary
-z run in staking mode -z run in staking mode
-Z run in legacy, foundational-node mode (default) -y run in legacy, foundational-node mode (default)
examples: examples:
@ -168,7 +168,7 @@ ${BLSKEYFILE=}
unset OPTIND OPTARG opt unset OPTIND OPTARG opt
OPTIND=1 OPTIND=1
while getopts :1chk:sSp:dDmN:tT:i:ba:U:PvVZz opt while getopts :1chk:sSp:dDmN:tT:i:ba:U:PvVyz opt
do do
case "${opt}" in case "${opt}" in
'?') usage "unrecognized option -${OPTARG}";; '?') usage "unrecognized option -${OPTARG}";;
@ -196,7 +196,7 @@ do
V) LD_LIBRARY_PATH=. ./harmony -version V) LD_LIBRARY_PATH=. ./harmony -version
exit 0 ;; exit 0 ;;
z) staking_mode=true;; z) staking_mode=true;;
Z) staking_mode=false;; y) staking_mode=false;;
*) err 70 "unhandled option -${OPTARG}";; # EX_SOFTWARE *) err 70 "unhandled option -${OPTARG}";; # EX_SOFTWARE
esac esac
done done

Loading…
Cancel
Save