Skip to content

Commit

Permalink
[windows] use system tar
Browse files Browse the repository at this point in the history
  • Loading branch information
nil4 committed Oct 21, 2024
1 parent f21acba commit 6f42eb7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Scripts/windows/dependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@ Set-StrictMode -Version Latest

$nmake = (Get-Command nmake.exe -ErrorAction Stop)
$swift = (Get-Command swift.exe -ErrorAction Stop)
$tar = (Get-Command $env:windir\system32\tar.exe -ErrorAction Stop)

$nmake,$swift | Format-Table -AutoSize -HideTableHeaders -Property Source
$nmake,$swift,$tar | Format-Table -AutoSize -HideTableHeaders -Property Source

exec { swift --version }
exec { & $tar --version }

$BIN_DIR = Join-Path $ROOT_PATH "bin" -Resolve

Expand Down

0 comments on commit 6f42eb7

Please sign in to comment.