Don't try creating tar.gz archive on Windows
This commit is contained in:
parent
cc776c8b44
commit
f4209b9de6
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
|||
<Project>
|
||||
<Target Name="GenerateArchives"
|
||||
DependsOnTargets="GenerateLayout"
|
||||
DependsOnTargets="GenerateLayout;GetCurrentRuntimeInformation"
|
||||
AfterTargets="Build">
|
||||
|
||||
<ZipFileCreateFromDirectory
|
||||
|
@ -9,6 +9,7 @@
|
|||
OverwriteDestination="true" />
|
||||
|
||||
<TarGzFileCreateFromDirectory
|
||||
Condition=" '$(OSName)' != 'win' "
|
||||
SourceDirectory="$(RedistLayoutPath)"
|
||||
DestinationArchive="$(ArtifactsShippingPackagesDir)$(ArtifactNameWithVersionSdk).tar.gz"
|
||||
OverwriteDestination="true" />
|
||||
|
|
Loading…
Reference in a new issue