From ea97a188c95f949344cb12390a687653155a9b32 Mon Sep 17 00:00:00 2001 From: Giri Date: Thu, 15 Dec 2022 14:59:27 +0000 Subject: [PATCH] echo statement corrected --- examples/reverse-proxy/mnist/run-all | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/reverse-proxy/mnist/run-all b/examples/reverse-proxy/mnist/run-all index b443fbfe..19c4cbcd 100755 --- a/examples/reverse-proxy/mnist/run-all +++ b/examples/reverse-proxy/mnist/run-all @@ -18,8 +18,8 @@ APLS_IP=$1 echo "APLS IP: "${APLS_IP} Host_IP=$2 -[[ -z "$2" ]] && { echo "IP address of the Host 1 is empty" ; exit 1; } -echo "HOST 1 IP: "${Host_IP} +[[ -z "$2" ]] && { echo "IP address of the Host is empty" ; exit 1; } +echo "HOST IP: "${Host_IP} if [[ -f "$(pwd)/scripts/bin/common" ]]