[versions-manifest] Update for release from 06/02/2020 #18

Closed
MaksimZhukov wants to merge 6 commits from update-versions-manifest-file into master
Showing only changes of commit e76e666987 - Show all commits

View File

@@ -25,18 +25,15 @@ function Create-TarArchive {
)
$arguments = @(
"-c",
"-f", $ArchivePath,
"."
"-c", "--$CompressionType"
)
If ($CompressionType) {
$arguments += "--${CompressionType}"
}
if ($DereferenceSymlinks) {
$arguments += "-h"
}
$arguments += @("-f", $ArchivePath, ".")
Push-Location $SourceFolder
Write-Debug "tar $arguments"
tar @arguments