We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents cbd9c6d + 43e30af commit 898f889Copy full SHA for 898f889
tools/PublishModules.ps1
@@ -76,7 +76,7 @@ if (($scope -eq 'All') -or ($scope -eq 'AzureStorage')) {
76
Publish-Module -Path $modulePath -NuGetApiKey $apiKey -Repository $repoName
77
}
78
79
-if ($scope -eq 'AzureRM') {
+if (($scope -eq 'All') -or ($scope -eq 'AzureRM')) {
80
# Publish AzureRM module
81
$modulePath = "$PSScriptRoot\AzureRM"
82
Write-Host "Publishing AzureRM module from $modulePath"
@@ -96,7 +96,7 @@ if ($scope -eq 'All') {
96
Write-Host "Published $module module"
97
98
99
-} else {
+} elseif ($scope -ne 'AzureRM') {
100
$modulePath = Join-Path $resourceManagerRootFolder "AzureRM.$scope"
101
if (Test-Path $modulePath) {
102
Write-Host "Publishing $scope module from $modulePath"
0 commit comments