8a8dec8bbd
auto copy script plugins/localization for local builds
12 lines
457 B
PowerShell
12 lines
457 B
PowerShell
param (
|
|
[string]$OutputDir = $(throw "-OutputDir is required.")
|
|
)
|
|
|
|
$localizations = @("en-US", "ru-RU", "es-EC", "pt-BR", "de-DE")
|
|
foreach($localization in $localizations)
|
|
{
|
|
$url = "http://api.raidmax.org:5000/localization/{0}" -f $localization
|
|
$filePath = "{0}Localization\IW4MAdmin.{1}.json" -f $OutputDir, $localization
|
|
$response = Invoke-WebRequest $url
|
|
Out-File -FilePath $filePath -InputObject $response.Content -Encoding utf8
|
|
} |