File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile.Netcore'; ModuleVersion = '0
60
60
# ScriptsToProcess = @()
61
61
62
62
# Type files (.ps1xml) to be loaded when importing this module
63
- TypesToProcess = ' .\Microsoft.WindowsAzure.Commands.Storage.Types .ps1xml'
63
+ TypesToProcess = ' .\Microsoft.WindowsAzure.Commands.Storage.types .ps1xml'
64
64
65
65
# Format files (.ps1xml) to be loaded when importing this module
66
66
FormatsToProcess = ' .\Microsoft.WindowsAzure.Commands.Storage.format.ps1xml'
Original file line number Diff line number Diff line change @@ -262,7 +262,6 @@ if ($Profile -eq "Stack") {
262
262
}
263
263
264
264
$resourceManagerRootFolder = " $packageFolder \$buildConfig \ResourceManager\AzureResourceManager"
265
- $storageRootFolder = " $packageFolder \$buildConfig \Storage"
266
265
$resourceManagerModules = Get-ChildItem - Path $resourceManagerRootFolder - Directory
267
266
$templateLocation = " $PSScriptRoot \AzureRM.Example.psm1"
268
267
@@ -343,9 +342,9 @@ if ($scope -eq 'AzureRM.Netcore') {
343
342
Create- ModulePsm1 - ModulePath " $resourceManagerRootFolder \AzureRM.Profile.Netcore" - TemplatePath $templateLocation - IsRMModule $true
344
343
Write-Host " Updated profile module"
345
344
346
- Write-Host " Updating storage module "
347
- Create - ModulePsm1 - ModulePath " $storageRootFolder \Azure.Storage.Netcore " - TemplatePath $templateLocation - IsRMModule $false
348
- Write-Host " Updated profile module "
345
+ $modulePath = " $packageFolder \ $buildConfig \Storage\Azure.Storage.Netcore "
346
+ Write-Host " Updating AzureStorage module from $modulePath "
347
+ Create - ModulePsm1 - ModulePath $modulePath - TemplatePath $templateLocation - IsRMModule $false
349
348
350
349
$env: PSModulePath += " $ ( [IO.Path ]::PathSeparator) $resourceManagerRootFolder \AzureRM.Profile.Netcore" ;
351
350
You can’t perform that action at this time.
0 commit comments