This website works better with JavaScript.
Home
Explore
Help
Sign In
ayan.poddar
/
eShopOnContainers
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
19
Wiki
Activity
Browse Source
Fixed parameter bug create resource script (
#1494
)
pull/1501/head
Sumit Ghosh
4 years ago
committed by
GitHub
parent
0b4f44659d
commit
78db4b758c
No known key found for this signature in database
GPG Key ID:
4AEE18F83AFDEB23
1 changed files
with
2 additions
and
2 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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
Write
Preview
Loading…
Cancel
Save