node-versions/helpers/nix-helpers.psm1
2020-05-29 15:24:03 +03:00

44 lines
925 B
PowerShell

<#
.SYNOPSIS
Unpack *.tar file
#>
function Extract-TarArchive {
param(
[Parameter(Mandatory=$true)]
[String]$ArchivePath,
[Parameter(Mandatory=$true)]
[String]$OutputDirectory
)
Write-Debug "Extract $ArchivePath to $OutputDirectory"
tar -C $OutputDirectory -xzf $ArchivePath --strip 1
}
function Create-TarArchive {
param(
[Parameter(Mandatory=$true)]
[String]$SourceFolder,
[Parameter(Mandatory=$true)]
[String]$ArchivePath,
[string]$CompressionType = "gz",
[switch]$DereferenceSymlinks
)
$arguments = @(
"-c",
"-f", $ArchivePath,
"."
)
If ($CompressionType) {
$arguments += "--${CompressionType}"
}
if ($DereferenceSymlinks) {
$arguments += "-h"
}
Push-Location $SourceFolder
Write-Debug "tar $arguments"
tar @arguments
Pop-Location
}