Fix loop syntax in runPantheonPrivateNetwork.sh (#237)

`while (( "$#" ))` does not work in some shells.
Matt Gucci 6 years ago committed by Adrian Sutton
parent 025d698d0c
commit fbf121bc3c
  1. 2
      quickstart/runPantheonPrivateNetwork.sh

@ -14,7 +14,7 @@
me=`basename "$0"`
PARAMS=""
while (( "$#" )); do
while [ $# -gt 0 ]; do
case "$1" in
-h|--help)
echo "Usage:"

Loading…
Cancel
Save