Fixed parameter bug create resource script (#1494)

This commit is contained in:
Sumit Ghosh 2020-10-21 16:33:29 +05:30 committed by GitHub
parent 0b4f44659d
commit 78db4b758c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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