Skip to content

Commit

Permalink
.github/workflows: fix exit code variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
uhthomas committed Jun 1, 2023
1 parent edeeed0 commit 8467a38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/k8s-diff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
script: |
const { exitCode, stdout } = exec.getExecOutput('diff', ['-urN', 'base', 'head'])
if (exitcode === 0) {
if (exitCode === 0) {
core.warning(`diff returned 0, stdout: ${stdout}`)
return
}
Expand Down

0 comments on commit 8467a38

Please sign in to comment.