This commit is contained in:
Adam Rudell 2023-08-16 19:13:17 -05:00
Родитель b115724695
Коммит 885969a6de
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -28,6 +28,12 @@ function Get-VfpPortState {
continue
}
# if we have an error, then capture error and exit out of the function
if ($line -ilike "ERROR:*") {
$msg = $line.Replace('ERROR:','').Trim()
throw $msg
}
# split the line by the colon and trim the spaces
$subValue = $line.Split(':').Trim()
if ($subValue.Count -eq 2) {