Skip to content

Commit cf13a03

Browse files
authored
Merge pull request #14 from murraysean/murraysean/update-scripts
Fix typo in scripts
2 parents 163da12 + 53b5e4d commit cf13a03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

infra/scripts/language/run_language_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd ${SCRIPT_DIR}
99
# Arguments:
1010
use_mi=$1
1111

12-
if [ "$use_mi" = "true" ];
12+
if [ "$use_mi" = "true" ]; then
1313
echo "Authenticating with MI..."
1414
az login --identity
1515
fi

infra/scripts/registry/run_registry_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ acr_name=$2
1212
repo=$3
1313
tag=$4
1414

15-
if [ "$use_mi" = "true" ];
15+
if [ "$use_mi" = "true" ]; then
1616
echo "Authenticating with MI..."
1717
az login --identity
1818
fi

infra/scripts/search/run_search_setup.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use_mi=$1
1212
storage_account_name=$2
1313
blob_container_name=$3
1414

15-
if [ "$use_mi" = "true" ];
15+
if [ "$use_mi" = "true" ]; then
1616
echo "Authenticating with MI..."
1717
az login --identity
1818
fi

0 commit comments

Comments
 (0)