You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Home-AssistantConfig/tools/validate_dashboards.ps1

14 lines
349 B

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"

Powered by TurnKey Linux.