Skip to content

Commit

Permalink
Fix actions-runner-worker.ps1 (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHX authored Aug 31, 2023
1 parent 2923f13 commit 33db1ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compat/actions-runner-worker.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ echo "Wait for exit"
Wait-Process -InputObject $proc
$exitCode = $proc.ExitCode
# https://github.com/actions/runner/blob/af6ed41bcb47019cce2a7035bad76c97ac97b92a/src/Runner.Common/Util/TaskResultUtil.cs#L13-L14
if(($exitCode -ge 100) -or ($exitCode -le 105)) {
if(($exitCode -ge 100) -and ($exitCode -le 105)) {
$conclusion = 0
} else {
$conclusion = 1
Expand Down

0 comments on commit 33db1ac

Please sign in to comment.