Skip to content

Commit

Permalink
Fix distribution packaging not working in onebranch (#1916)
Browse files Browse the repository at this point in the history
* Debug why packaging is not working on onebranch

* Fix package
  • Loading branch information
thhous-msft authored Aug 13, 2021
1 parent 8f49275 commit 737981c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/package-distribution.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ $AllBuilds = @()
foreach ($Platform in $Platforms) {
$PlatBuilds = Get-ChildItem -Path $Platform.FullName
foreach ($PlatBuild in $PlatBuilds) {
if (!(Test-Path $PlatBuild -PathType Container)) {
if (!(Test-Path $PlatBuild.FullName -PathType Container)) {
continue;
}
$AllBuilds += $PlatBuild
Expand Down

0 comments on commit 737981c

Please sign in to comment.