Skip to content

Commit

Permalink
feat: Container clone and Start-PSJekyll ( Fixes #24 )
Browse files Browse the repository at this point in the history
Logging less redundantly
  • Loading branch information
James Brundage committed Oct 2, 2024
1 parent 2976ed1 commit df39518
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Container.start.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ if ($args) {
}

$jekyllJob = Start-PSJekyll
while ($jekyllJob.State.State -notin 'Completed','Failed') {
"Running jekyll job $($jekyllJob.Name) $($jekyllJob.State)" | Out-Host
while ($jekyllJob.State -notin 'Completed','Failed') {
Start-Sleep -Milliseconds (Get-Random -Min 1000 -Max 10000)
$jekyllJob | Receive-Job | Out-Host
}
Expand Down

0 comments on commit df39518

Please sign in to comment.