File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,8 @@ if ($scope -eq 'All' -or $scope -eq 'AzureRM') {
106
106
Write-Host " Updated $module module"
107
107
}
108
108
}
109
- } elseif ($scope -eq ' AzureStack' -or $scope -eq ' All' ) {
109
+ }
110
+ if ($scope -eq ' AzureStack' -or $scope -eq ' All' ) {
110
111
$modulePath = Join-Path $resourceManagerRootFolder " AzureRM.AzureStackAdmin"
111
112
if (Test-Path $modulePath ) {
112
113
Write-Host " Updating AzureRM.AzureStackAdmin module from $modulePath "
@@ -123,7 +124,7 @@ if ($scope -eq 'All' -or $scope -eq 'AzureRM') {
123
124
} else {
124
125
Write-Error " Can not find module with name $scope to publish"
125
126
}
126
- } elseif ($scope -ne ' AzureRM' -and $scope -ne ' AzureStack ' ) {
127
+ } elseif ($scope -ne ' AzureRM' -and $scope -ne ' ServiceManagement ' ) {
127
128
$modulePath = Join-Path $resourceManagerRootFolder " AzureRM.$scope "
128
129
if (Test-Path $modulePath ) {
129
130
Write-Host " Updating $scope module from $modulePath "
@@ -142,7 +143,7 @@ if (($scope -eq 'All') -or ($scope -eq 'AzureRM')) {
142
143
Write-Host " Updated Azure module"
143
144
}
144
145
145
- if ($scope -eq ' AzureStack' ) {
146
+ if (( $scope -eq ' AzureStack' ) -or ( $scope -eq ' All ' ) ) {
146
147
# Update AzureStack module
147
148
$modulePath = " $PSScriptRoot \AzureStack"
148
149
Write-Host " Updating AzureStack module from $modulePath "
You can’t perform that action at this time.
0 commit comments