Skip to content

Commit

Permalink
Fix behavior of Resolve-UnverifiedPath
Browse files Browse the repository at this point in the history
For verified paths, we should return `ProviderPath` as opposed to
`Path` in order to have consistent results in all PowerShell
environments.
  • Loading branch information
HowardWolosky committed Mar 11, 2017
1 parent dd51495 commit 43a0553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion StoreBroker/Helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,6 @@ function Resolve-UnverifiedPath
}
else
{
return $resolvedPath.Path
return $resolvedPath.ProviderPath
}
}
2 changes: 1 addition & 1 deletion StoreBroker/StoreBroker.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
CompanyName = 'Microsoft Corporation'
Copyright = 'Copyright (C) Microsoft Corporation. All rights reserved.'

ModuleVersion = '1.4.6'
ModuleVersion = '1.4.7'
Description = 'Provides command-line access to the Windows Store Submission REST API.'

RootModule = 'StoreIngestionApi'
Expand Down

0 comments on commit 43a0553

Please sign in to comment.