Updates for UE 5.5

This commit is contained in:
2024-10-08 18:30:09 -04:00
parent 8880398cbe
commit 066ca97025
10 changed files with 136 additions and 96 deletions

View File

@ -47,5 +47,5 @@ function verify-path { param( $path )
function grab-zip { param( $url, $path_file, $path_dst )
Invoke-WebRequest -Uri $url -OutFile $path_file
Expand-Archive -Path $path_file -DestinationPath $path_dst -Confirm:$false
Expand-Archive -Path $path_file -DestinationPath $path_dst -Force
}