b6d97f8a73
Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
376 B
PowerShell
16 lines
376 B
PowerShell
# Проверка версий (до или после docker compose)
|
|
param([switch]$AfterStart)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
Set-Location $PSScriptRoot
|
|
|
|
if ($AfterStart) {
|
|
& "$PSScriptRoot\check.sh" --after-start
|
|
} else {
|
|
& bash "$PSScriptRoot\check.sh" 2>$null
|
|
if ($LASTEXITCODE -ne 0) {
|
|
$env:CHECK_SKIP_DB = "1"
|
|
go run ./cmd/check
|
|
}
|
|
}
|