Skip to content

Commit d2f7dc7

Browse files
committed
Fix resource string
1 parent f316556 commit d2f7dc7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Tasks/DeployAzureResourceGroup/AzureUtilityGTE1.0.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ function Get-AzureRMVMsInResourceGroup
148148
catch [Microsoft.WindowsAzure.Commands.Common.ComputeCloudException],[System.MissingMethodException], [System.Management.Automation.PSInvalidOperationException], [Hyak.Common.CloudException]
149149
{
150150
Write-Verbose $_.Exception.Message
151-
throw (Get-LocalizedString -Key "Ensure resource group '{0}' exists and has atleast one virtual machine in it" -ArgumentList $resourceGroupName)
151+
throw (Get-LocalizedString -Key "Ensure resource group '{0}' exists and has at least one virtual machine in it" -ArgumentList $resourceGroupName)
152152
}
153153
catch
154154
{

Tasks/DeployAzureResourceGroup/AzureUtilityGTE1.1.0.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function Get-AzureRMVMsInResourceGroup
1717
catch [Microsoft.WindowsAzure.Commands.Common.ComputeCloudException],[System.MissingMethodException], [System.Management.Automation.PSInvalidOperationException], [Hyak.Common.CloudException], [Microsoft.Rest.Azure.CloudException]
1818
{
1919
Write-Verbose $_.Exception.Message
20-
throw (Get-LocalizedString -Key "Ensure resource group '{0}' exists and has atleast one virtual machine in it" -ArgumentList $resourceGroupName)
20+
throw (Get-LocalizedString -Key "Ensure resource group '{0}' exists and has at least one virtual machine in it" -ArgumentList $resourceGroupName)
2121
}
2222
catch
2323
{

Tasks/DeployAzureResourceGroup/AzureUtilityLTE9.8.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ function Get-AzureRMVMsInResourceGroup
159159
catch [Microsoft.WindowsAzure.Commands.Common.ComputeCloudException],[System.MissingMethodException], [System.Management.Automation.PSInvalidOperationException], [Hyak.Common.CloudException]
160160
{
161161
Write-Verbose $_.Exception.Message
162-
throw (Get-LocalizedString -Key "Ensure resource group '{0}' exists and has atleast one virtual machine in it" -ArgumentList $resourceGroupName)
162+
throw (Get-LocalizedString -Key "Ensure resource group '{0}' exists and has at least one virtual machine in it" -ArgumentList $resourceGroupName)
163163
}
164164
catch
165165
{

Tasks/DeployAzureResourceGroup/task.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"version": {
1414
"Major": 1,
1515
"Minor": 0,
16-
"Patch": 72
16+
"Patch": 73
1717
},
1818
"demands": [
1919
"azureps"

Tasks/DeployAzureResourceGroup/task.loc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"version": {
1414
"Major": 1,
1515
"Minor": 0,
16-
"Patch": 72
16+
"Patch": 73
1717
},
1818
"demands": [
1919
"azureps"

0 commit comments

Comments
 (0)