12 lines
428 B
PowerShell
12 lines
428 B
PowerShell
# Deprecated shim: point developers to the OGG conversion workflow
|
|
Write-Host "convert_to_wav.ps1 is deprecated." -ForegroundColor Yellow
|
|
Write-Host "Use convert_to_ogg.ps1 for generating assets with OGG Vorbis." -ForegroundColor Yellow
|
|
|
|
$oggScript = Join-Path $PSScriptRoot "convert_to_ogg.ps1"
|
|
if (Test-Path $oggScript) {
|
|
& $oggScript
|
|
} else {
|
|
Write-Host "Missing convert_to_ogg.ps1" -ForegroundColor Red
|
|
exit 1
|
|
}
|