Browse Source

Fixed parameter bug create resource script (#1494)

pull/1501/head
Sumit Ghosh 4 years ago
committed by GitHub
parent
commit
78db4b758c
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      deploy/azure/az/createresources.sh

+ 2
- 2
deploy/azure/az/createresources.sh View File

@ -51,8 +51,8 @@ if [ ! -f "$1.json" ]; then
exit 1 exit 1
fi 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 exit 1
fi fi


Loading…
Cancel
Save