mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2026-04-24 09:07:22 +00:00
14 lines
349 B
PowerShell
14 lines
349 B
PowerShell
param()
|
|
|
|
Set-StrictMode -Version Latest
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
$repoRoot = Split-Path -Parent $PSScriptRoot
|
|
$py = Get-Command py -ErrorAction SilentlyContinue
|
|
if (-not $py) {
|
|
throw "Python launcher 'py' not found. Install Python 3 or run tools/validate_dashboards.py with your python."
|
|
}
|
|
|
|
py -3 "$repoRoot\tools\validate_dashboards.py"
|
|
|