@@ -85,15 +85,15 @@ $component_name = $clientNameSpace.Substring($clientNameSpace.LastIndexOf('.') +
85
85
86
86
# The base cmdlet from which all automation cmdlets derive
87
87
[string ]$baseCmdletFullName = " Microsoft.Azure.Commands.${component_name} .${component_name} ClientBaseCmdlet" ;
88
- if ($clientNameSpace -like " Microsoft.WindowsAzure.Management.${component_name} " )
88
+ if ($clientNameSpace -eq " Microsoft.WindowsAzure.Management.${component_name} " )
89
89
{
90
90
# Overwrite RDFE base cmdlet name
91
91
$baseCmdletFullName = " Microsoft.WindowsAzure.Commands.Utilities.Common.ServiceManagementBaseCmdlet" ;
92
92
}
93
93
94
94
# The property field to access the client wrapper class from the base cmdlet
95
95
[string ]$baseClientFullName = " ${component_name} Client.${component_name} ManagementClient" ;
96
- if ($clientNameSpace -like " Microsoft.WindowsAzure.Management.${component_name} " )
96
+ if ($clientNameSpace -eq " Microsoft.WindowsAzure.Management.${component_name} " )
97
97
{
98
98
# Overwrite RDFE base cmdlet name
99
99
$baseClientFullName = " ${component_name} Client" ;
@@ -115,7 +115,8 @@ Write-Verbose "Base Cmdlet Full Name = $baseCmdletFullName";
115
115
Write-Verbose " Base Client Full Name = $baseClientFullName " ;
116
116
Write-Verbose " Cmdlet Flavor = $cmdletFlavor " ;
117
117
Write-Verbose " Operation Name Filter = $operationNameFilter " ;
118
- Write-Verbose ($BAR_LINE + $NEW_LINE );
118
+ Write-Verbose $BAR_LINE ;
119
+ Write-Verbose $NEW_LINE ;
119
120
120
121
$code_common_namespace = ($clientNameSpace.Replace (' .Management.' , ' .Commands.' )) + ' .Automation' ;
121
122
$code_model_namespace = ($clientNameSpace.Replace (' .Management.' , ' .Commands.' )) + ' .Automation.Models' ;
0 commit comments