Skip to content

Commit 5502c20

Browse files
committed
Fix sign check
- most likely cause of failing official builds - small typo in #10340: need to find .cab files _below_ `$(TargetDir)`
1 parent e953537 commit 5502c20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Installers/Windows/Wix.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
AfterTargets="Build">
5050
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(InstallersOutputPath)" />
5151
<ItemGroup>
52-
<_cabs Include="$(TargetDir)\*.cab" />
52+
<_cabs Include="$(TargetDir)**/*.cab" />
5353
</ItemGroup>
5454
<Copy SourceFiles="@(_cabs)" DestinationFolder="$(InstallersOutputPath)" />
5555
</Target>

0 commit comments

Comments
 (0)