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.
1 parent 38e31e8 commit 21aa557Copy full SHA for 21aa557
tools/RunVersionController.ps1
@@ -274,7 +274,7 @@ function Bump-AzVersion
274
# Add artifacts as PSModulePath to skip installation
275
if(!($env:PSModulePath.Split(";").Contains($resolvedArtifactsOutputPath)))
276
{
277
- $env:PSModulePath += ";$resolvedArtifactsOutputPath"
+ $env:PSModulePath = "$resolvedArtifactsOutputPath;" + $env:PSModulePath
278
}
279
280
Update-ModuleManifest -Path "$PSScriptRoot\Az\Az.psd1" -ModuleVersion $newVersion -ReleaseNotes $releaseNotes
0 commit comments