From 1c96f88e7cfde4f06913bd5b0c2df9743af6a589 Mon Sep 17 00:00:00 2001 From: Josh Meisels Date: Wed, 29 Mar 2017 17:39:45 -0700 Subject: [PATCH] Fix syntax issue - missing semicolons --- algo | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/algo b/algo index 794d7bc9..5d85540d 100755 --- a/algo +++ b/algo @@ -158,16 +158,16 @@ Enter the number of your desired region: read -p " What size do you want your VM? 1) Standard D1 v2 - 2) Standard A0 (cheap) - 3) Basic A0 (cheapest) + 2) Standard A0 - cheap + 3) Basic A0 - cheapest Enter the number of your desired size [1]: " -r azure_vm_size azure_vm_size=${azure_vm_size:-1} case "$azure_vm_size" in - 1) vm_size="Standard_D1_v2" - 2) vm_size="ExtraSmall" #Conflicting documentation says this might need to be Standard_A0... - 3) vm_size="Basic_A0" + 1) vm_size="Standard_D1_v2" ;; + 2) vm_size="ExtraSmall" ;; #Conflicting documentation says this might need to be Standard_A0... + 3) vm_size="Basic_A0" ;; esac #source for sizes: https://docs.microsoft.com/en-us/azure/cloud-services/cloud-services-sizes-specs