From d573b55821814dbc4b1ebc4d4dfa08c6b0d24142 Mon Sep 17 00:00:00 2001 From: Pankaj Garg Date: Wed, 27 Mar 2019 23:16:30 +0000 Subject: [PATCH] fix the ip address that's stored in the config file --- net/gce.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/gce.sh b/net/gce.sh index 83a2f48868..4e73dd7200 100755 --- a/net/gce.sh +++ b/net/gce.sh @@ -209,7 +209,7 @@ cloud_ForEachInstance() { declare count=1 for info in "${instances[@]}"; do declare name publicIp privateIp - IFS=: read -r name publicIp privateIp < <(echo "$info") + IFS=: read -r name publicIp privateIp zone < <(echo "$info") eval "$cmd" "$name" "$publicIp" "$privateIp" "$count" "$@" count=$((count + 1))