Merge pull request #98 from rmbolger/bugfixes

Bugfixes for issues #96 and #97
This commit is contained in:
Kyle Ruddy
2017-07-06 15:07:56 -04:00
committed by GitHub

View File

@@ -72,7 +72,7 @@
$BackupJob = $BackupAPI.create($CreateSpec) $BackupJob = $BackupAPI.create($CreateSpec)
} }
catch { catch {
Write-Error $Error[0].exception.Message throw $_.Exception.Message
} }
@@ -84,6 +84,7 @@
start-sleep -seconds 5 start-sleep -seconds 5
} until ($BackupAPI.get("$($BackupJob.ID)").progress -eq 100 -or $BackupAPI.get("$($BackupJob.ID)").state -ne "INPROGRESS") } until ($BackupAPI.get("$($BackupJob.ID)").progress -eq 100 -or $BackupAPI.get("$($BackupJob.ID)").state -ne "INPROGRESS")
Write-Progress -Activity "Backing up VCSA" -Completed
$BackupAPI.get("$($BackupJob.ID)") | select id, progress, state $BackupAPI.get("$($BackupJob.ID)") | select id, progress, state
} }
Else { Else {