Fix sign check
- most likely cause of failing official builds - small typo in #10340: need to find .cab files _below_ `$(TargetDir)`
This commit is contained in:
parent
e953537307
commit
5502c2080e
|
|
@ -49,7 +49,7 @@
|
||||||
AfterTargets="Build">
|
AfterTargets="Build">
|
||||||
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(InstallersOutputPath)" />
|
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(InstallersOutputPath)" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<_cabs Include="$(TargetDir)\*.cab" />
|
<_cabs Include="$(TargetDir)**/*.cab" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Copy SourceFiles="@(_cabs)" DestinationFolder="$(InstallersOutputPath)" />
|
<Copy SourceFiles="@(_cabs)" DestinationFolder="$(InstallersOutputPath)" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue