Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 78db4b7

Browse files
author
Sumit Ghosh
authored
Fixed parameter bug create resource script (#1494)
1 parent 0b4f446 commit 78db4b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deploy/azure/az/createresources.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ if [ ! -f "$1.json" ]; then
5151
exit 1
5252
fi
5353

54-
if [ ! -f "$2.parameters.json" ]; then
55-
echo "$2.parameters.json doesn't exist"
54+
if [ ! -f "$1.parameters.json" ]; then
55+
echo "$1.parameters.json doesn't exist"
5656
exit 1
5757
fi
5858

0 commit comments

Comments
 (0)