Skip to content

Commit

Permalink
echo statement corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
Giri committed Dec 15, 2022
1 parent e439845 commit ea97a18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/reverse-proxy/mnist/run-all
Original file line number Diff line number Diff line change
Expand Up @@ -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" ]]
Expand Down

0 comments on commit ea97a18

Please sign in to comment.