Skip to content

Commit

Permalink
Like that ?
Browse files Browse the repository at this point in the history
  • Loading branch information
tytan652 committed Aug 3, 2023
1 parent 11abee6 commit e33a5f7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions deps.windows/60-uthash.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ function Install {

New-Item -Path "$($ConfigData.OutputPath)/include" -ItemType Directory -Force *> $null

$Items = @{
$Item = @{
Path = @("src/utarray.h", "src/uthash.h", "src/utlist.h", "src/utringbuffer.h", "src/utstack.h", "src/utstring.h")
Destination = "$($ConfigData.OutputPath)/include"
ErrorAction = 'SilentlyContinue'
}

Copy-Item @Items
Log-Output ('{0} => {1}' -f ($Item.Path -join ", "), $Item.Destination)
Copy-Item @Item
}

0 comments on commit e33a5f7

Please sign in to comment.