From 78db4b758c57cb2767131b5f434b3e3232b91ed2 Mon Sep 17 00:00:00 2001 From: Sumit Ghosh Date: Wed, 21 Oct 2020 16:33:29 +0530 Subject: [PATCH] Fixed parameter bug create resource script (#1494) --- deploy/azure/az/createresources.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy/azure/az/createresources.sh b/deploy/azure/az/createresources.sh index 3a71ca8fd..096befe6c 100644 --- a/deploy/azure/az/createresources.sh +++ b/deploy/azure/az/createresources.sh @@ -51,8 +51,8 @@ if [ ! -f "$1.json" ]; then exit 1 fi -if [ ! -f "$2.parameters.json" ]; then - echo "$2.parameters.json doesn't exist" +if [ ! -f "$1.parameters.json" ]; then + echo "$1.parameters.json doesn't exist" exit 1 fi