Skip to content

Commit 1b08774

Browse files
committed
Missed removing one instance of output
1 parent 425cfdb commit 1b08774

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2964,7 +2964,7 @@ async function run() {
29642964
core.setOutput('stderr', stderr.contents);
29652965
core.setOutput('exitcode', exitCode);
29662966

2967-
if (output.exitCode !== 0) {
2967+
if (exitCode !== 0) {
29682968
core.setFailed(`Program exited with code ${exitCode}.`);
29692969
}
29702970
}

src/run-wrapper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ async function run() {
4343
core.setOutput('stderr', stderr.contents);
4444
core.setOutput('exitcode', exitCode);
4545

46-
if (output.exitCode !== 0) {
46+
if (exitCode !== 0) {
4747
core.setFailed(`Program exited with code ${exitCode}.`);
4848
}
4949
}

0 commit comments

Comments
 (0)