10 lines
365 B
PowerShell
10 lines
365 B
PowerShell
@(
|
|
$(
|
|
@($HAConfigPath,'/srv/ha/current/homeassistant','/usr/share/hassio/homeassistant') |
|
|
Where-Object { $_ } |
|
|
Where-Object { Test-Path -Type Container $_ } |
|
|
Select-Object -First 1
|
|
), $HAConfigPath, '/srv/ha/current/homeassistant'
|
|
) | Where-Object { $_ } |
|
|
Select-Object -First 1 -OutVariable HAConfigPath
|