PIbd-32_Stroev_V_M_PMD/run_fgen.ps1
2024-12-08 18:49:37 +04:00

18 lines
672 B
PowerShell

# Устанавливаем кодировку консоли на UTF-8
$OutputEncoding = [System.Text.Encoding]::UTF8
# Путь к снимку
$snapshotPath = "$env:USERPROFILE\AppData\Local\Pub\Cache\global_packages\fgen\bin\fgen.dart-3.5.2.snapshot"
# Проверяем, существует ли снимок
if (Test-Path $snapshotPath) {
dart $snapshotPath @Args
# The VM exits with code 253 if the snapshot version is out-of-date.
# If it is, we need to delete it and run "pub global" manually.
if ($LASTEXITCODE -ne 253) {
exit $LASTEXITCODE
}
}
# Выполняем команду pub global run fgen:fgen
dart pub global run fgen:fgen @Args